diff options
author | FRIGN <dev@frign.de> | 2016-01-05 16:03:43 +0100 |
---|---|---|
committer | FRIGN <dev@frign.de> | 2016-01-05 16:03:43 +0100 |
commit | ba154494ae239b9a79fc0947cad497e983c80653 (patch) | |
tree | 09545024948117d5e25837415766109469b8ca37 /2ff | |
parent | b669c8642e21850ea561931633ae06e6ba5bf354 (diff) |
2ff: Check return values and handle errors
Also, in case convert(1) is not in the path, it will just return an
error-message giving the MIME-type of the problematic input data.
The return-value is given properly as well (0 on success, 1 on error).
Diffstat (limited to '2ff')
-rwxr-xr-x | 2ff | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -10,9 +10,15 @@ cat > $TMP; FORMAT=$(file -ib $TMP | cut -d ";" -f 1); case "$FORMAT" in - image/png) png2ff < $TMP ;; - image/jpeg) jpg2ff < $TMP ;; - *) convert $TMP png:- | png2ff ;; + image/png) png2ff < $TMP; ret=$? ;; + image/jpeg) jpg2ff < $TMP; ret=$? ;; + *) xconvert $TMP png:- 2&>/dev/null | png2ff 2&>/dev/null; ret=$? ;; esac rm $TMP; + +if [ $ret -ne 0 ]; then + printf "%s: failed to convert %s\n" "$0" "$FORMAT" 1>&2; +fi + +exit $ret; |