aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Strapp <strap012@umn.edu>2021-04-29 11:26:15 -0500
committerMatt Strapp <strap012@umn.edu>2021-04-29 11:26:15 -0500
commit11a497e99e42ed78e58d57029c7773f98d718518 (patch)
tree8b3c4fb84d99c43c513c3f83a3d4f3c08b0f0347
parentURGENT: Fix syntax (diff)
downloadcsci4511w-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?
-rwxr-xr-xstart.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/start.sh b/start.sh
index 81575ea..4567e31 100755
--- a/start.sh
+++ b/start.sh
@@ -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;