From: Angus Leeming Date: Sun, 17 Apr 2005 17:31:15 +0000 (+0000) Subject: Send error messages to STDERR X-Git-Tag: 1.6.10~14394 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=f724b28cd917e65ee6119393d13247fd06327922;p=features.git Send error messages to STDERR git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9818 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/lib/ChangeLog b/lib/ChangeLog index 6364a7d4e0..3db753d324 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,7 @@ +2005-04-15 Angus Leeming + + * scripts/convertDefault.sh: post error messages to STDERR. + 2005-04-09 Angus Leeming * Makefile.am (dist_scripts_DATA): add scripts/fig_copy.sh and diff --git a/lib/scripts/convertDefault.sh b/lib/scripts/convertDefault.sh index c6240e5319..9c381f8342 100644 --- a/lib/scripts/convertDefault.sh +++ b/lib/scripts/convertDefault.sh @@ -16,7 +16,7 @@ # converts an image from $1 to $2 format convert -depth 8 "$1" "$2" || { - echo "$0 ERROR" - echo "Execution of \"convert\" failed." + echo "$0 ERROR" >&2 + echo "Execution of \"convert\" failed." >&2 exit 1 }