fixes #42 (bashism removed)

This commit is contained in:
fritz-hh
2014-01-06 19:36:07 +01:00
parent 0245ce4385
commit 6ea29cc892
+1 -1
View File
@@ -229,7 +229,7 @@ while read pageSize ; do
# Identify if page image should be saved as ppm (color) or pgm (gray)
ext="ppm"
opt=""
if [ $colorspaceCurImg == "Gray" ]; then
if [ $colorspaceCurImg = "Gray" ]; then
ext="pgm"
opt="-gray"
fi