]> git.lyx.org Git - lyx.git/blobdiff - lib/scripts/fig2pstex.sh
layout file converter for layout files in old format
[lyx.git] / lib / scripts / fig2pstex.sh
index db612748bfe8b8e384822ee2fc236bac266d78e9..83dc296d987807e18a9eee87aa8352aee5ea780c 100644 (file)
@@ -28,6 +28,9 @@ type fig2dev > /dev/null || exit 1
 input=$1
 output=$2
 
+# Fail silently if the file doesn't exist
+test -r $input || exit 0
+
 # Strip the extension from ${output}
 outbase=`echo ${output} | sed 's/[.][^.]*$//'`