diff --git a/scripts/install-mimic.sh b/scripts/install-mimic.sh index f5f31e8806..86ffc4a6ab 100755 --- a/scripts/install-mimic.sh +++ b/scripts/install-mimic.sh @@ -30,7 +30,7 @@ if [ ! -d ${MIMIC_DIR} ] ; then git clone --branch ${MIMIC_VERSION} https://github.com/MycroftAI/mimic.git --depth=1 cd ${MIMIC_DIR} ./autogen.sh - ./configure --with-audio=alsa --enable-shared --prefix=$(pwd) + ./configure --with-audio=alsa --enable-shared --prefix="$(pwd)" make -j${CORES} make install else @@ -41,7 +41,7 @@ else git fetch --all --tags --prune git checkout tags/${MIMIC_VERSION} ./autogen.sh - ./configure --with-audio=alsa --enable-shared --prefix=$(pwd) + ./configure --with-audio=alsa --enable-shared --prefix="$(pwd)" make clean make -j${CORES} make install diff --git a/scripts/my-info.sh b/scripts/my-info.sh old mode 100755 new mode 100644