From: Jo-Philipp Wich Date: Wed, 23 Feb 2011 22:58:58 +0000 (+0000) Subject: [PATCH 1/2] Never write errors to stdout from ipkg-make-index.sh X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=c2065a31d883d6e326357724a0d5071b72a4dd5d [PATCH 1/2] Never write errors to stdout from ipkg-make-index.sh Since the output of ipkg-make-index.sh is unconditionally used to create the Packages file, sending the errors into this file is unacceptable (both because they are not shown to users and because they make an invalid Packages file). For incorrect invocation, write to stderr. For errors from which, send to /dev/null with stdout. Signed-off-by: Kevin Locke SVN-Revision: 25677 --- diff --git a/scripts/ipkg-make-index.sh b/scripts/ipkg-make-index.sh index c4c46f8882..8ae7eedc9a 100755 --- a/scripts/ipkg-make-index.sh +++ b/scripts/ipkg-make-index.sh @@ -4,11 +4,11 @@ set -e pkg_dir=$1 if [ -z $pkg_dir ] || [ ! -d $pkg_dir ]; then - echo "Usage: ipkg-make-index " + echo "Usage: ipkg-make-index " >&2 exit 1 fi -which md5sum 2>&1 >/dev/null || alias md5sum=md5 +which md5sum >/dev/null 2>&1 || alias md5sum=md5 for pkg in `find $pkg_dir -name '*.ipk' | sort`; do echo "Generating index for package $pkg" >&2