r77769 - /scripts/AUTHOR

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Sat Jul 23 16:11:10 UTC 2011


Author: dmn
Date: Sat Jul 23 16:11:08 2011
New Revision: 77769

URL: http://svn.debian.org/wsvn/?sc=1&rev=77769
Log:
fix the curl fallback to wget

Modified:
    scripts/AUTHOR

Modified: scripts/AUTHOR
URL: http://svn.debian.org/wsvn/scripts/AUTHOR?rev=77769&op=diff
==============================================================================
--- scripts/AUTHOR (original)
+++ scripts/AUTHOR Sat Jul 23 16:11:08 2011
@@ -16,7 +16,8 @@
     exit 1
 fi
 
-CURL=`which curl`
+if which curl > /dev/null; then
+	CURL=curl
 if [ -z "$CURL" ]; then
 	CURL='wget -q -O -'
 fi




More information about the Pkg-perl-cvs-commits mailing list