Send error messages to STDERR

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9818 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2005-04-17 17:31:15 +00:00
parent b9cbf3424f
commit f724b28cd9
2 changed files with 6 additions and 2 deletions

View 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

View 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
}