From 4f825c626f62534945940d0a6f863d76a50ffac5 Mon Sep 17 00:00:00 2001 From: markus schnalke Date: Wed, 24 Sep 2014 11:32:48 +0200 Subject: [PATCH] print-mimetype: fixed a syntax error --- uip/print-mimetype.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" -- 1.7.10.4