diff options
Diffstat (limited to 'src/simplaret')
-rwxr-xr-x | src/simplaret | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/simplaret b/src/simplaret index add9be8..f2d2ebd 100755 --- a/src/simplaret +++ b/src/simplaret @@ -38,7 +38,7 @@ function simplaret_usage { function simplaret_get_index { for file in `simplaret_metafiles`; do - echo getting $1/$file + echo getting $1/$file: simplaret_download $1 $file $2 --no-verbose done @@ -424,7 +424,8 @@ function simplaret_search_and_delete { if [ "`package_version $candidate`" == "`package_version $result`" ] && \ [ "`package_build $candidate`" == "`package_build $result`" ]; then if [ "$3" != "--silent" ]; then - echo package $candidate already downloaded and stored at `dirname $file` + echo package $candidate already downloaded + echo package $candidate stored at `dirname $file` else echo $file fi return 1 @@ -533,7 +534,7 @@ function simplaret_search_and_download_patch { # check if the patch was already downloaded if echo "$DOWNLOADED_PATCHES" | grep -q " $ARCH:$VERSION:$sugested "; then - echo "jail $root needs package $sugested, but it's already downloaded, skipping donwload" + echo "jail $root needs package $sugested (already downloaded, skipping)" fi # search if its installed in the jail |