Fix bash-ism in postprocess.sh
This commit is contained in:
@@ -66,7 +66,7 @@ if [ -n "$DCRAW" ]; then
|
|||||||
# If imagemagick is available, convert the tiff to jpeg and apply slight sharpening
|
# If imagemagick is available, convert the tiff to jpeg and apply slight sharpening
|
||||||
if [ -n "$CONVERT" ];
|
if [ -n "$CONVERT" ];
|
||||||
then
|
then
|
||||||
if [ "$CONVERT" == "convert" ]; then
|
if [ "$CONVERT" = "convert" ]; then
|
||||||
convert "$MAIN_PICTURE.$TIFF_EXT" -sharpen 0x1.0 "$TARGET_NAME.jpg"
|
convert "$MAIN_PICTURE.$TIFF_EXT" -sharpen 0x1.0 "$TARGET_NAME.jpg"
|
||||||
else
|
else
|
||||||
gm convert "$MAIN_PICTURE.$TIFF_EXT" -sharpen 0x1.0 "$TARGET_NAME.jpg"
|
gm convert "$MAIN_PICTURE.$TIFF_EXT" -sharpen 0x1.0 "$TARGET_NAME.jpg"
|
||||||
|
Reference in New Issue
Block a user