tazpkg rev 119

tazpkg: typos fixed by Mike D. Smith
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jul 13 21:27:54 2008 +0000 (2008-07-13)
parents 877a7f9443d8
children 60b6743c7eca
files tazpkg
line diff
     1.1 --- a/tazpkg	Thu Jul 10 14:48:45 2008 +0000
     1.2 +++ b/tazpkg	Sun Jul 13 21:27:54 2008 +0000
     1.3 @@ -5,7 +5,7 @@
     1.4  # SHell script. It works well with Busybox ash shell and bash. Tazpkg let you
     1.5  # list, install, remove, download or get information about a package, you can
     1.6  # use 'tazpkg usage' to get a list of commands with a short description. Tazpkg
     1.7 -# also relolv dependencies and can upgrade packages from a mirror.
     1.8 +# also resolves dependencies and can upgrade packages from a mirror.
     1.9  #
    1.10  # (C) 2007-2008 SliTaz - GNU General Public License v3.
    1.11  #
    1.12 @@ -36,7 +36,7 @@
    1.13  non-free"
    1.14  
    1.15  # Initialize some variables to use words
    1.16 -# rater than numbers for functions and actions.
    1.17 +# rather than numbers for functions and actions.
    1.18  COMMAND=$1
    1.19  if [ -f "$2" ]; then
    1.20  	# Set pkg basename for install, extract
    1.21 @@ -59,11 +59,11 @@
    1.22  BLOCKED=$LOCALSTATE/blocked-packages.list
    1.23  DEFAULT_MIRROR="http://mirror.slitaz.org/packages/`cat /etc/slitaz-release`/"
    1.24  
    1.25 -# Bold red warnig for upgrade.
    1.26 +# Bold red warning for upgrade.
    1.27  WARNING="\\033[1;31mWARNING\\033[0;39m"
    1.28  
    1.29  # Check if the directories and files used by Tazpkg
    1.30 -# exists. If not and user is root we creat them.
    1.31 +# exists. If not and user is root we create them.
    1.32  if test $(id -u) = 0 ; then
    1.33  	if [ ! -d "$CACHE_DIR" ]; then
    1.34  		mkdir -p $CACHE_DIR
    1.35 @@ -734,7 +734,7 @@
    1.36  		echo ""
    1.37  		;;
    1.38  	info)
    1.39 -		# Informations about package.
    1.40 +		# Information about package.
    1.41  		#
    1.42  		check_for_package_on_cmdline
    1.43  		check_for_receipt
    1.44 @@ -1541,7 +1541,7 @@
    1.45  		done
    1.46  		;;
    1.47  	usage|*)
    1.48 -		# Print a short help or give usage for an unknow or empty command.
    1.49 +		# Print a short help or give usage for an unknown or empty command.
    1.50  		#
    1.51  		usage
    1.52  		;;