cookutils rev 83

fix an echo typo
author Christophe Lincoln <pankso@slitaz.org>
date Sun May 08 02:18:23 2011 +0200 (2011-05-08)
parents 810b56de8281
children 5e2eae957b4c
files cook
line diff
     1.1 --- a/cook	Sun May 08 02:07:12 2011 +0200
     1.2 +++ b/cook	Sun May 08 02:18:23 2011 +0200
     1.3 @@ -392,10 +392,10 @@
     1.4  		if [ ! -f "$INSTALLED/$dep/receipt" ]; then
     1.5  			# Try local package first
     1.6  			if [ -f "$PKGS/$dep-*.tazpkg" ]; then
     1.7 -				gettext "Installing deps (local):"; echo " $dep"
     1.8 +				gettext "Installing dep (local):"; echo " $dep"
     1.9  				cd $PKGS && tazpkg install $dep-*.tazpkg >/dev/null
    1.10  			else
    1.11 -				gettext "Installing deps (web/cache):"; echo " $dep"
    1.12 +				gettext "Installing dep (web/cache):"; echo " $dep"
    1.13  				tazpkg get-install $dep >/dev/null
    1.14  			fi
    1.15  		fi