]> git.lyx.org Git - lyx.git/blobdiff - lib/scripts/convertDefault.sh
clean up french language handling
[lyx.git] / lib / scripts / convertDefault.sh
index 53bf1171411f4271a8f8be00e691ccba08eccc4b..9c381f8342fa24710ed6b4e23cba8cd529a1fd46 100644 (file)
@@ -1,10 +1,22 @@
-#!/bin/bash
-# this is the default converter if no one other was
-# defined by the user in edit->preferences->converter
-#
-# the user can also redefine this default converter
-# with an own shell script in ~/.lyx/scripts
-#
-# converts an image from $1 to $2 format 
-convert -depth 8 $1 $2 
-exit 0
+#! /bin/sh
+
+# file convertDefault.sh
+# This file is part of LyX, the document processor.
+# Licence details can be found in the file COPYING.
+
+# author Herbert Voß
+
+# Full author contact details are available in file CREDITS.
+
+# The default converter if no other has been defined by the user from the
+# Conversion->Converter tab of the Preferences dialog.
+
+# The user can also redefine this default converter, placing their
+# replacement in ~/.lyx/scripts
+
+# converts an image from $1 to $2 format
+convert -depth 8 "$1" "$2" || {
+       echo "$0 ERROR" >&2
+       echo "Execution of \"convert\" failed." >&2
+       exit 1
+}