From cfba98593c458edabbcdb80ea179c043eb9ec1f2 Mon Sep 17 00:00:00 2001 From: Martijn Braam Date: Fri, 26 Mar 2021 01:07:13 +0100 Subject: [PATCH] Fix bash-ism in postprocess.sh --- postprocess.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postprocess.sh b/postprocess.sh index 9a5282c..792b817 100755 --- a/postprocess.sh +++ b/postprocess.sh @@ -66,7 +66,7 @@ if [ -n "$DCRAW" ]; then # If imagemagick is available, convert the tiff to jpeg and apply slight sharpening if [ -n "$CONVERT" ]; then - if [ "$CONVERT" == "convert" ]; then + if [ "$CONVERT" = "convert" ]; then convert "$MAIN_PICTURE.$TIFF_EXT" -sharpen 0x1.0 "$TARGET_NAME.jpg" else gm convert "$MAIN_PICTURE.$TIFF_EXT" -sharpen 0x1.0 "$TARGET_NAME.jpg"