From e3aa87e4ed52d668d54c9e3e252552778e815bab Mon Sep 17 00:00:00 2001 From: tomsmeding Date: Mon, 27 Apr 2015 15:30:04 +0200 Subject: Allow passing of competing binaries to fullcompMT.sh --- fullcompMT.sh | 8 ++++++-- 1 file 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 -- cgit v1.2.3