diff options
-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 |