OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Thomas Lotterer
Root: /v/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-tools Date: 22-Feb-2007 17:31:18
Branch: HEAD Handle: 2007022216311800
Modified files:
openpkg-tools/cmd curl.sh
Log:
remove testing code snippet which causes unconditional use of curlrc,
giving "error trying read config" errors unless curlrc exists.
Cosmetic issue, does not cause malfunction but confusion.
Summary:
Revision Changes Path
1.2 +1 -1 openpkg-tools/cmd/curl.sh
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-tools/cmd/curl.sh
============================================================================
$ cvs diff -u -r1.1 -r1.2 curl.sh
--- openpkg-tools/cmd/curl.sh 20 Feb 2007 22:23:12 -0000 1.1
+++ openpkg-tools/cmd/curl.sh 22 Feb 2007 16:31:18 -0000 1.2
@@ -63,7 +63,7 @@
# prepend --config <file> option if conf file is readable
declare -a a;
-[ -r "$conf" -o true ] && set -- "--config" "$conf" "$@"
+[ -r "$conf" ] && set -- "--config" "$conf" "$@"
# execute underlying application
exec $curl "$@"
@@ .
______________________________________________________________________
OpenPKG http://openpkg.org
CVS Repository Commit List [email protected]