diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-05-05 06:19:45 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-05-05 06:19:45 +0000 |
commit | d1e22aaffc3348bffa5269423c820b4cee5c10bd (patch) | |
tree | 33fcff66f0b1f1d01371aadf469f88306bc2ae1f /trunk/src | |
parent | 11f13be846cd09e219c094526a55de95049b53f9 (diff) | |
download | simplepkg-d1e22aaffc3348bffa5269423c820b4cee5c10bd.tar.gz simplepkg-d1e22aaffc3348bffa5269423c820b4cee5c10bd.tar.bz2 |
simplaret: small fix
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@368 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'trunk/src')
-rwxr-xr-x | trunk/src/simplaret | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/trunk/src/simplaret b/trunk/src/simplaret index 51075bd..c8cc2f7 100755 --- a/trunk/src/simplaret +++ b/trunk/src/simplaret @@ -97,7 +97,7 @@ function simplaret_download { if [ "$protocol" == "http" ]; then - echo Getting $1/$file: + echo Getting $1/$2: if [ "$HTTP_TOOL" == "wget" ]; then wget $wget_timeout $wget_verbose $1/$2 -O $3/$file elif [ "$HTTP_TOOL" == "curl" ]; then @@ -109,7 +109,7 @@ function simplaret_download { fi elif [ "$protocol" == "ftp" ]; then - echo Getting $1/$file: + echo Getting $1/$2: if [ "$PASSIVE_FTP" == "1" ]; then wget_passive_ftp="--passive-ftp" |