commit 7c7ac41d0871daf800226da46be7e7c03372dc8a
parent 3ff2637f69feefc15227d67b0ea22dd99b9ebbd1
Author: umhau <umhau@alum.gcc.edu>
Date: Mon, 19 Jun 2017 20:51:49 -0400
bugfix - the 'remove' function wasn't called correctly.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/install.sh b/install.sh
@@ -36,13 +36,13 @@ CMUsrc="cmusphinx" # or "umhau"
# CHECK FOR PREVIOUS INSTALLATION =============================================
if [ -d /opt/vmc/ ]; then
- bash "$scriptpath/vmc -remove 1>/dev/null"; echo -n "Removed vmc"
+ bash "vmc -remove 1>/dev/null"; echo "Removed vmc"
fi
# INSTALL VMC DEPENDENCIES ====================================================
if [ ! "$1" == '-no-deps' ]; then
- echo -n "Installing dependencies. To continue, press [enter]."; read
+ echo "Installing dependencies. To continue, press [enter]."; read
if [ ! -d $install_dir ]; then mkdir $install_dir; fi