From f724b28cd917e65ee6119393d13247fd06327922 Mon Sep 17 00:00:00 2001 From: Angus Leeming Date: Sun, 17 Apr 2005 17:31:15 +0000 Subject: [PATCH] Send error messages to STDERR git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9818 a592a061-630c-0410-9148-cb99ea01b6c8 --- lib/ChangeLog | 4 ++++ lib/scripts/convertDefault.sh | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) 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 } -- 2.39.2