diff options
Diffstat (limited to 'trunk')
-rw-r--r-- | trunk/doc/CHANGELOG | 6 | ||||
-rwxr-xr-x | trunk/src/simplaret | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/trunk/doc/CHANGELOG b/trunk/doc/CHANGELOG index bd57087..ee0495c 100644 --- a/trunk/doc/CHANGELOG +++ b/trunk/doc/CHANGELOG @@ -1,6 +1,12 @@ simplepkg changelog =================== +0.5pre22 +======== + + - simplaret: + - small fix + 0.5pre21 ======== 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" |