aboutsummaryrefslogtreecommitdiffstats
path: root/start.sh
diff options
context:
space:
mode:
authorMatt Strapp <strap012@umn.edu>2021-04-29 17:58:39 -0500
committerMatt Strapp <strap012@umn.edu>2021-04-29 17:58:39 -0500
commitc1ccd12e3536b545977a699a12492f1cff4b477c (patch)
tree5ce6478aeaf70c540b6d1affbbbaa8c087baea1c /start.sh
parentAllow choices (diff)
downloadcsci4511w-c1ccd12e3536b545977a699a12492f1cff4b477c.tar
csci4511w-c1ccd12e3536b545977a699a12492f1cff4b477c.tar.gz
csci4511w-c1ccd12e3536b545977a699a12492f1cff4b477c.tar.bz2
csci4511w-c1ccd12e3536b545977a699a12492f1cff4b477c.tar.lz
csci4511w-c1ccd12e3536b545977a699a12492f1cff4b477c.tar.xz
csci4511w-c1ccd12e3536b545977a699a12492f1cff4b477c.tar.zst
csci4511w-c1ccd12e3536b545977a699a12492f1cff4b477c.zip
Fix output bug
Diffstat (limited to 'start.sh')
-rwxr-xr-xstart.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/start.sh b/start.sh
index f59ae02..8279901 100755
--- a/start.sh
+++ b/start.sh
@@ -50,7 +50,7 @@ case $log in
read -p "Output file name (please include '.csv'): " o
echo ""
read -p "This will now run evaluate.py with the given arguments in the foreground. Hit enter to confirm." TRASH
- (python3 python/evaluate.py -c $c -r $r -n $n -o $o ws://127.0.0.1:(`expr $PORT - 2`) ws://127.0.0.1:(`expr $PORT - 1`)) > evaluate.log
+ (python3 python/evaluate.py -c $c -r $r -n $n -o $o ws://127.0.0.1:`expr $PORT - 1` ws://127.0.0.1:`expr $PORT`) > evaluate.log
echo ""
echo "Log of evaluate python script located in evaluate.log"
echo "Evaluate has finished! Check the output in $o"