From 4c3be4e2c1256adce0d9b205cec9c2f898410b25 Mon Sep 17 00:00:00 2001 From: Alejandro Mery Date: Thu, 6 Dec 2007 21:28:07 -0500 Subject: [PATCH] Fixed ./lib/sde-package/patch-copyright.sh to send all errors to stderr, to not send garbage to patch -p0 --- lib/sde-package/patch-copyright.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/sde-package/patch-copyright.sh b/lib/sde-package/patch-copyright.sh index 7749bc0..1bd3942 100755 --- a/lib/sde-package/patch-copyright.sh +++ b/lib/sde-package/patch-copyright.sh @@ -124,7 +124,7 @@ while read filename ; do mode=sh tag="# " else - echo "Unknown type of $filename" + echo "Unknown type of $filename" >&2 continue fi ;; @@ -139,12 +139,12 @@ while read filename ; do c) pretag='/*' posttag=' */' tag=' * ' ;; - *) echo "Unknown mode '$mode' of $filename" + *) echo "Unknown mode '$mode' of $filename" >&2 continue ;; esac else - echo "Unknown tag '$tag' on $filename" + echo "Unknown tag '$tag' on $filename" >&2 continue fi