From: Frank Terbeck Date: Sun, 15 Feb 2009 16:55:43 +0000 (+0100) Subject: grml-exec-wrapper: remove uneeded variable and else path X-Git-Tag: v1.1.18~6^2~3 X-Git-Url: http://git.grml.org/?p=grml-scripts.git;a=commitdiff_plain;h=dcb6090b9e23b455fb7b043c340508e3373e6a40 grml-exec-wrapper: remove uneeded variable and else path --- diff --git a/usr_bin/grml-exec-wrapper b/usr_bin/grml-exec-wrapper index cd51cae..5466d02 100755 --- a/usr_bin/grml-exec-wrapper +++ b/usr_bin/grml-exec-wrapper @@ -37,7 +37,6 @@ if [ -z "$1" ] ; then exit 1 fi -RC='0' PROG="$1" # make sure to support 'grml-exec-wrapper sudo wireshark' as well: @@ -47,9 +46,9 @@ esac if is_installed "$PROG" ; then exec "$@" -else - RC=1 - display_info "Sorry: ${PROG} not available. +fi + +display_info "Sorry: ${PROG} not available. Looks like the grml flavour you are using does not ship ${PROG}. :( @@ -57,8 +56,7 @@ You can search for ${PROG} executing: apt-get update && apt-cache search ${PROG} " -fi -exit $RC +exit 1 ## END OF FILE #################################################################