From dcb6090b9e23b455fb7b043c340508e3373e6a40 Mon Sep 17 00:00:00 2001 From: Frank Terbeck Date: Sun, 15 Feb 2009 17:55:43 +0100 Subject: [PATCH] grml-exec-wrapper: remove uneeded variable and else path --- usr_bin/grml-exec-wrapper | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) 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 ################################################################# -- 2.1.4