From c1ccd12e3536b545977a699a12492f1cff4b477c Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Thu, 29 Apr 2021 17:58:39 -0500 Subject: Fix output bug --- start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- cgit v1.2.3