From: Nicolas Thill Date: Wed, 26 Jul 2006 00:03:05 +0000 (+0000) Subject: let ipkg fail when a package file to be installed is not found X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=25c9b688eaad9b4ae89ef9c046bf522578e63900;p=15.05%2Fopenwrt.git let ipkg fail when a package file to be installed is not found git-svn-id: svn://svn.openwrt.org/openwrt/trunk@4287 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/openwrt/scripts/ipkg b/openwrt/scripts/ipkg index 4d3ad85065..57e4457cc5 100755 --- a/openwrt/scripts/ipkg +++ b/openwrt/scripts/ipkg @@ -923,11 +923,7 @@ ipkg_install() { ipkg_install_file $ipkg_filename ;; *.ipk | *.deb) - if [ -f "$pkg" ]; then ipkg_install_file $pkg - else - echo "File not found $pkg" >&2 - fi ;; *) ipkg_get_install $pkg || true