From: markus schnalke Date: Wed, 24 Sep 2014 09:32:48 +0000 (+0200) Subject: print-mimetype: fixed a syntax error X-Git-Tag: mmh-0.2-RC1~109 X-Git-Url: http://git.marmaro.de/?a=commitdiff_plain;h=4f825c626f62534945940d0a6f863d76a50ffac5;p=mmh print-mimetype: fixed a syntax error --- diff --git a/uip/print-mimetype.sh b/uip/print-mimetype.sh index 2149902..76dd4ae 100755 --- a/uip/print-mimetype.sh +++ b/uip/print-mimetype.sh @@ -41,9 +41,9 @@ case "$i" in *.mpg|*.mpeg) video/mpeg;; *) if file "$i" | grep -q ' text$' ; then - type=text/plain;; + type=text/plain else - type=application/octet-stream;; + type=application/octet-stream fi esac echo "$type"