From 7bc1e99ad893cd58cae4896436c762c6e2a82e31 Mon Sep 17 00:00:00 2001 From: Jonathan Kamens Date: Mon, 15 Oct 2012 11:36:45 -0400 Subject: [PATCH] Don't strip #.* from ends of lines Revert e99ab2e9d07573e24e6d106877ff35eab46cdab1, which was intended to strip comments from lines fed to pip, but had the unintended side effect of stripping egg specifiers in URLs. The easiest way to address this is to simply not put trailing comments in requirements files, so we'er going to solve the problem that way instead. --- etc/ordered_pip.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/etc/ordered_pip.sh b/etc/ordered_pip.sh index 7cd74dc0..fc1a210b 100755 --- a/etc/ordered_pip.sh +++ b/etc/ordered_pip.sh @@ -4,7 +4,6 @@ a=0 while read line do if [[ -n "$line" && "$line" != \#* ]] ; then - line=${line%#*} pip install $line fi ((a = a + 1))