]> git.lyx.org Git - features.git/commitdiff
Send error messages to STDERR
authorAngus Leeming <leeming@lyx.org>
Sun, 17 Apr 2005 17:31:15 +0000 (17:31 +0000)
committerAngus Leeming <leeming@lyx.org>
Sun, 17 Apr 2005 17:31:15 +0000 (17:31 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9818 a592a061-630c-0410-9148-cb99ea01b6c8

lib/ChangeLog
lib/scripts/convertDefault.sh

index 6364a7d4e07464af9bf2ce7a422ffadc61be3c11..3db753d3246b3fb00ecada2eb380d9a17521234a 100644 (file)
@@ -1,3 +1,7 @@
+2005-04-15  Angus Leeming  <leeming@lyx.org>
+
+       * scripts/convertDefault.sh: post error messages to STDERR. 
+
 2005-04-09  Angus Leeming  <leeming@lyx.org>
 
        * Makefile.am (dist_scripts_DATA): add scripts/fig_copy.sh and
index c6240e53199725f64a91b908b2d34ccea1c8aeed..9c381f8342fa24710ed6b4e23cba8cd529a1fd46 100644 (file)
@@ -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
 }