From d2e3a3795f345fd78ead2cf06b1134b46f9d4bc4 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Sun, 20 Oct 2013 12:43:41 +0200 Subject: o Getting app-cat-conf to read from ~/.appconfig too. --- app | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'app') diff --git a/app b/app index 4993176..81c2c36 100755 --- a/app +++ b/app @@ -27,7 +27,7 @@ APPSH_HOME=`cd "$APPSH_HOME" && pwd` . $APPSH_HOME/lib/common echo_debug=no -while getopts "h" opt +while getopts ":hD:" opt do case $opt in h) @@ -35,9 +35,11 @@ do ;; D) echo_debug=yes + eval OPTIND=$((OPTIND-1)) + shift ;; - \?) - usage + *) + break ;; esac done @@ -66,4 +68,5 @@ PATH=$APPSH_HOME/bin:$PATH # TODO: this is probably a good place to clean up the environment exec env \ "APPSH_HOME=$APPSH_HOME" \ + "echo_debug=$echo_debug" \ "$bin" "$@" -- cgit v1.2.3