diff options
author | Matt Strapp <strap012@umn.edu> | 2021-04-29 11:26:15 -0500 |
---|---|---|
committer | Matt Strapp <strap012@umn.edu> | 2021-04-29 11:26:15 -0500 |
commit | 11a497e99e42ed78e58d57029c7773f98d718518 (patch) | |
tree | 8b3c4fb84d99c43c513c3f83a3d4f3c08b0f0347 | |
parent | URGENT: Fix syntax (diff) | |
download | csci4511w-11a497e99e42ed78e58d57029c7773f98d718518.tar csci4511w-11a497e99e42ed78e58d57029c7773f98d718518.tar.gz csci4511w-11a497e99e42ed78e58d57029c7773f98d718518.tar.bz2 csci4511w-11a497e99e42ed78e58d57029c7773f98d718518.tar.lz csci4511w-11a497e99e42ed78e58d57029c7773f98d718518.tar.xz csci4511w-11a497e99e42ed78e58d57029c7773f98d718518.tar.zst csci4511w-11a497e99e42ed78e58d57029c7773f98d718518.zip |
Fix the shell script for production, finally?
Diffstat (limited to '')
-rwxr-xr-x | start.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -32,7 +32,7 @@ done read -p "Do you want to run the logger? (Y/N): " log case $log in - 'Y' | 'y') + Y|y) echo "" read -p "Columns of board: " c read -p "Rows of board: " r @@ -48,7 +48,7 @@ case $log in *) echo "Web interface available at http://127.0.0.1:8080" ;; - +esac echo "Press enter to exit, killing all agents and the web server." read TRASH; |