* runtest.in: Here. This didn't work previously because, in our option parsing loop, we were mistakenly redefining '$shell_opts' each time, instead of appending to it.
Signed-off-by: Stefano Lattarini <stefano.lattar...@gmail.com> --- runtest.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtest.in b/runtest.in index 64ad0d7..0722141 100644 --- a/runtest.in +++ b/runtest.in @@ -44,12 +44,12 @@ while test $# -gt 0; do ;; -o) test $# -gt 1 || error "missing argument for option '$1'" - shell_opts="-o $2" + shell_opts="$shell_opts -o $2" shift ;; -*) # Assume it is an option to pass through to the shell. - shell_opts=$1;; + shell_opts="$shell_opts $1";; *) break;; esac -- 1.7.12.rc0