]> git.marmaro.de Git - mmh/commitdiff
print-mimetype: fixed a syntax error
authormarkus schnalke <meillo@marmaro.de>
Wed, 24 Sep 2014 09:32:48 +0000 (11:32 +0200)
committermarkus schnalke <meillo@marmaro.de>
Wed, 24 Sep 2014 09:32:48 +0000 (11:32 +0200)
uip/print-mimetype.sh

index 2149902a76e32c9b0dbb583d154432572308798d..76dd4aed6950bddbd5a8ee270346ee392e3ae175 100755 (executable)
@@ -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"