diff options
author | tomsmeding <hallo@tomsmeding.nl> | 2015-04-27 15:30:04 +0200 |
---|---|---|
committer | tomsmeding <hallo@tomsmeding.nl> | 2015-04-27 15:30:04 +0200 |
commit | e3aa87e4ed52d668d54c9e3e252552778e815bab (patch) | |
tree | 1ab1c86c7d0140eb47bc466c153ba6d7cf54069e | |
parent | 35c11ded6defeb1778aa4c82ec102c864a54ca9e (diff) |
Allow passing of competing binaries to fullcompMT.sh
-rwxr-xr-x | fullcompMT.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/fullcompMT.sh b/fullcompMT.sh index 7bb4665..93b4486 100755 --- a/fullcompMT.sh +++ b/fullcompMT.sh @@ -1,6 +1,10 @@ #!/usr/bin/env bash -BINARIES="./gluon ./neutrino ./randino ./charm" -NUMGAMES=5 +if [[ -z $@ ]]; then + BINARIES="./gluon ./neutrino ./randino ./charm" +else + BINARIES="$@" +fi +NUMGAMES=10 if [[ ! -e competitions ]]; then mkdir competitions || exit 1 |