diff options
Diffstat (limited to '')
-rwxr-xr-x | start.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |