diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-01-10 16:56:05 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-01-10 16:56:05 +0000 |
commit | 7331c3c39f16646f91c02fd2b907b4dd9a5be34d (patch) | |
tree | db51fdb00f977ab2f22d3fdec402885132f4e43c /scripts/ipkg | |
parent | c4c89c8379864bb6aeb52907f6cbbe98b4e625f0 (diff) | |
download | upstream-7331c3c39f16646f91c02fd2b907b4dd9a5be34d.tar.gz upstream-7331c3c39f16646f91c02fd2b907b4dd9a5be34d.tar.bz2 upstream-7331c3c39f16646f91c02fd2b907b4dd9a5be34d.zip |
cosmetic fixes for ipkg
SVN-Revision: 6066
Diffstat (limited to 'scripts/ipkg')
-rwxr-xr-x | scripts/ipkg | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/scripts/ipkg b/scripts/ipkg index 97a3151425..311f3abdb5 100755 --- a/scripts/ipkg +++ b/scripts/ipkg @@ -234,7 +234,6 @@ ipkg_download() { proxyoption="--proxy=on" fi - echo "Downloading $src ..." rm -f $IPKG_TMP/$src_file case "$src" in http://* | ftp://*) @@ -252,7 +251,6 @@ ipkg_download() { ;; esac - echo "Done." return 0 } @@ -665,7 +663,7 @@ Status: install ok not-installed" | ipkg_status_update_sd $sd $pkg curcheck="`expr $curcheck + 1`" local is_installed="`ipkg_get_installed $pkg`" if [ "$is_installed" = "installed" ]; then - echo "$pkg is installed" > /dev/console + echo "$pkg is installed" continue fi @@ -693,7 +691,6 @@ Status: install ok not-installed" | ipkg_status_update_sd $sd $pkg return 1; fi - echo "" local tmp_pkg_file="$IPKG_TMP/"`ipkg_file_part $filename` if ! ipkg_download `ipkg_src_byname $src`/$filename $tmp_pkg_file; then echo "ipkg_get_install: Perhaps you need to run \`ipkg update'?" @@ -907,7 +904,6 @@ ipkg_install_file() { } ipkg_install() { - while [ $# -gt 0 ]; do local pkg="$1" shift |