summaryrefslogtreecommitdiff
path: root/2ff
diff options
context:
space:
mode:
authorLaslo Hunhold <dev@frign.de>2017-04-14 17:51:40 +0200
committerLaslo Hunhold <dev@frign.de>2017-04-14 17:51:40 +0200
commit96d6bde7d9bb6a79b7f86fbbc285a49b9634cd63 (patch)
tree4b542e160c83d97b553095d1c86da390aa447b30 /2ff
parent1f9d0c28423ae3e422327a8ee5422aac23391231 (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-x2ff2
1 files changed, 1 insertions, 1 deletions
diff --git a/2ff b/2ff
index ef6f02d..6ce91b9 100755
--- a/2ff
+++ b/2ff
@@ -25,7 +25,7 @@ else
jpg2ff < "$TMP"
;;
*)
- convert "$TMP" png:- 2>/dev/null | png2ff 2>/dev/null
+ convert "$TMP" png:- | png2ff
;;
esac
fi