]> git.lyx.org Git - lyx.git/blobdiff - lib/scripts/convertDefault.sh
Enable the external inset to output different flavours of latex.
[lyx.git] / lib / scripts / convertDefault.sh
index 53bf1171411f4271a8f8be00e691ccba08eccc4b..25c083d75584a9c928ce10ac9b5d933e6380fd3e 100644 (file)
@@ -1,10 +1,23 @@
-#!/bin/bash
-# this is the default converter if no one other was
-# defined by the user in edit->preferences->converter
+#! /bin/sh
+# 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
-# with an own shell script in ~/.lyx/scripts
+# 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 
-exit 0
+# converts an image from $1 to $2 format
+convert -depth 8 $1 $2
+if [ $? -ne 0 ]; then
+    exit $?
+fi
+
+# It appears that convert succeeded, but we know better than to trust it ;-)
+# convert is passed strings in the form "FMT:FILENAME", so use the ':' to
+# delimit the two parts.
+FILE=`echo $2 | cut -d ':' -f 2`
+
+# FSTATUS == 0 is the file exists and == 1 if it does not.
+FSTATUS=0
+test -f $FILE || FSTATUS=1
+
+exit $FSTATUS