diff options
author | Laslo Hunhold <dev@frign.de> | 2017-04-14 17:51:40 +0200 |
---|---|---|
committer | Laslo Hunhold <dev@frign.de> | 2017-04-14 17:51:40 +0200 |
commit | 96d6bde7d9bb6a79b7f86fbbc285a49b9634cd63 (patch) | |
tree | 4b542e160c83d97b553095d1c86da390aa447b30 /2ff | |
parent | 1f9d0c28423ae3e422327a8ee5422aac23391231 (diff) |
Don't suppress imagemagick and png2ff(1) warnings
Else the user might be left wondering what happened. The output from
imagemagick might not be the nicest in the world, but it's bearable for
some given edge-cases.
Diffstat (limited to '2ff')
-rwxr-xr-x | 2ff | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ else jpg2ff < "$TMP" ;; *) - convert "$TMP" png:- 2>/dev/null | png2ff 2>/dev/null + convert "$TMP" png:- | png2ff ;; esac fi |