Remove "bashism" and minor corrections for contrib/thunderbird-patch-inline/appp.sh Signed-off-by: Maxin B. John <maxin@xxxxxxxxxxxxxxx> --- diff --git a/contrib/thunderbird-patch-inline/appp.sh b/contrib/thunderbird-patch-inline/appp.sh index cc518f3..1d29f4b 100755 --- a/contrib/thunderbird-patch-inline/appp.sh +++ b/contrib/thunderbird-patch-inline/appp.sh @@ -1,8 +1,8 @@ -#!/bin/bash +#!/bin/sh # Copyright 2008 Lukas Sandström <luksan@xxxxxxxxx> # # AppendPatch - A script to be used together with ExternalEditor -# for Mozilla Thunderbird to properly include pathes inline i e-mails. +# for Mozilla Thunderbird to properly include patches inline in e-mails. # ExternalEditor can be downloaded at http://globs.org/articles.php?lng=en&pg=2 @@ -16,6 +16,11 @@ else cd > /dev/null fi +#check whether zenity is present +if ! type zenity >/dev/null 2>&1 ; then + exit 1 +fi + PATCH=$(zenity --file-selection) if [ "$?" != "0" ] ; then -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html