# HG changeset patch # User "Yann E. MORIN" # Date 1231079725 0 # Node ID ba7f344ed57f36f23e4a8dffefe2a9d173ce9d4d # Parent 4e7562023f3eda83bbd53f0f17408ae047cd041a Fix aborting when neither wget nor curl are present. /trunk/scripts/functions | 2 1 1 0 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -r 4e7562023f3e -r ba7f344ed57f scripts/functions --- a/scripts/functions Sun Jan 04 14:25:58 2009 +0000 +++ b/scripts/functions Sun Jan 04 14:35:25 2009 +0000 @@ -427,7 +427,7 @@ # Usage: CT_DoGetFile CT_DoGetFile() { case "${_wget},${_curl}" in - ,) CT_DoError "Could find neither wget nor curl";; + ,) CT_Abort "Could find neither wget nor curl";; ,*) CT_DoExecLog ALL CT_DoGetFileCurl "$1" 2>&1;; *) CT_DoExecLog ALL CT_DoGetFileWget "$1" 2>&1;; esac