diff options
author | Dan Nicholson <dbn.lists@gmail.com> | 2013-01-19 15:55:07 -0800 |
---|---|---|
committer | Dan Nicholson <dbn.lists@gmail.com> | 2013-01-19 16:05:19 -0800 |
commit | 35ddf2903dd6c38bd27ae45e2868ee29f88b49e0 (patch) | |
tree | 0a1bc55c0adecb2b3c8f04a355ad9c6d1c2ad11e /test/browser.sh.in | |
parent | a00ccfdcc8cb5b1d8f56909d6a49c540b0e3665e (diff) |
test: Don't quote BROWSER variable to allow args
Quoting the BROWSER variable is nice to protect against spaces in the
filename, but it keeps multiple arguments from passing through. The
latter is more useful as it allows you to do things like
BROWSER="gdb --args epiphany" ./test/browser.sh.
Diffstat (limited to 'test/browser.sh.in')
-rw-r--r-- | test/browser.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/browser.sh.in b/test/browser.sh.in index 2c09d76..c56b4bf 100644 --- a/test/browser.sh.in +++ b/test/browser.sh.in @@ -27,4 +27,4 @@ case "$BROWSER" in ;; esac -exec "$BROWSER" "$@" +exec $BROWSER "$@" |