From f3258f3e138134287c336d51db1756ac299a7115 Mon Sep 17 00:00:00 2001 From: BinHong Lee Date: Tue, 15 Aug 2017 19:26:51 -0700 Subject: [PATCH] Fix missing 'fi' in install and uninstall script --- install.sh | 1 + uninstall.sh | 2 ++ 2 files changed, 3 insertions(+) diff --git a/install.sh b/install.sh index 11ce3c4..e2f6a67 100755 --- a/install.sh +++ b/install.sh @@ -3,6 +3,7 @@ if [ $kernel == "Darwin" ]; then else sudo apt-get update sudo apt-get install libjsoncpp-dev +fi cp lib/anttasks.jar ~ pushd ~ diff --git a/uninstall.sh b/uninstall.sh index 02eddd0..7da462f 100755 --- a/uninstall.sh +++ b/uninstall.sh @@ -2,6 +2,8 @@ if [ $kernel == "Darwin" ]; then sudo apt-get remove --purge libjsoncpp-dev else brew uninstall jsoncpp +fi + cd ../ echo "Deleting project files" rm -rf TicketingSystem