diff options
author | Mario Fetka <[email protected]> | 2013-03-10 10:24:41 (GMT) |
---|---|---|
committer | Mario Fetka <[email protected]> | 2013-03-10 10:24:41 (GMT) |
commit | 33ebcc84bc920f31cc617f7d6f076b5416b7419f (patch) | |
tree | ba4023e90be316485289052e3c796360c10795a3 /lib/builder-utils.sh | |
parent | ab21cfc255df69de8052b3845fd55fe8e180bcaa (diff) |
correct coding style
Diffstat (limited to 'lib/builder-utils.sh')
-rw-r--r-- | lib/builder-utils.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/builder-utils.sh b/lib/builder-utils.sh index 3b0226a..97c11ed 100644 --- a/lib/builder-utils.sh +++ b/lib/builder-utils.sh @@ -193,11 +193,11 @@ convert_image() { # create the matte if [ `convert | grep Version | awk '{print $3}' | sed "s/-.*//" | sed "s/\.//g"` -le 670 ] ; then - convert $OUTPUT_DIR/removed_black.png -channel matte -separate +matte \ - $OUTPUT_DIR/matte.png + convert $OUTPUT_DIR/removed_black.png -channel matte -separate +matte \ + $OUTPUT_DIR/matte.png else - convert $OUTPUT_DIR/removed_black.png -channel matte -negate -separate +matte \ - $OUTPUT_DIR/matte.png + convert $OUTPUT_DIR/removed_black.png -channel matte -negate -separate +matte \ + $OUTPUT_DIR/matte.png fi # negate the colors |