From 1790ca5508406fc453ab40f95518ee70399a969b Mon Sep 17 00:00:00 2001 From: Moritz Grimm Date: Wed, 20 Sep 2017 00:17:20 +0200 Subject: [PATCH] Explicitly exit 0 on success --- examples/meta.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/meta.sh b/examples/meta.sh index eb59acd..b7b1daa 100755 --- a/examples/meta.sh +++ b/examples/meta.sh @@ -10,3 +10,5 @@ test -z "${1}" && cat metadata.txt 2> /dev/null test x"${1}" = "xartist" && cat artist.txt 2> /dev/null test x"${1}" = "xtitle" && cat title.txt 2> /dev/null test x"${1}" = "xalbum" && cat album.txt 2> /dev/null + +exit 0