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 | 1796694c7608ca0d3f4f67f93d54ab661cb90971 (patch) | |
tree | 68545c7d6922ff360d40d4821612cb2d59d612db | |
parent | 81dad3807468527bbf97d91e2f47393ffb04924e (diff) | |
download | prosody-1796694c7608ca0d3f4f67f93d54ab661cb90971.tar.gz prosody-1796694c7608ca0d3f4f67f93d54ab661cb90971.zip |
run_tests: use "$@" for passing arguments [shellcheck]
-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 "$@" |