diff options
author | Anton Shestakov <av6@dwimlabs.net> | 2016-07-14 17:23:57 +0800 |
---|---|---|
committer | Anton Shestakov <av6@dwimlabs.net> | 2016-07-14 17:23:57 +0800 |
commit | 35b97a641c90f9ee2ca41f8d15f8202a7a660871 (patch) | |
tree | 68545c7d6922ff360d40d4821612cb2d59d612db /tests/run_tests.sh | |
parent | 59fd8e3707ff2e70d90e285df366b47a25728928 (diff) | |
download | prosody-35b97a641c90f9ee2ca41f8d15f8202a7a660871.tar.gz prosody-35b97a641c90f9ee2ca41f8d15f8202a7a660871.zip |
run_tests: use "$@" for passing arguments [shellcheck]
Diffstat (limited to 'tests/run_tests.sh')
-rwxr-xr-x | tests/run_tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run_tests.sh b/tests/run_tests.sh index bfb13d00..7f1ee700 100755 --- a/tests/run_tests.sh +++ b/tests/run_tests.sh @@ -1,3 +1,3 @@ #!/bin/sh rm reports/*.report -exec lua test.lua $* +exec lua test.lua "$@" |