~martijnbraam/megapixels

cfba98593c458edabbcdb80ea179c043eb9ec1f2 — Martijn Braam 4 years ago 30a7bd7
Fix bash-ism in postprocess.sh
1 files changed, 1 insertions(+), 1 deletions(-)

M postprocess.sh
M postprocess.sh => postprocess.sh +1 -1
@@ 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"