install-mimic picks a specific version, not the latest (#437)
parent
a53a5bf0a6
commit
b0eeaf2200
|
@ -4,10 +4,11 @@ set -Ee
|
|||
|
||||
MIMIC_DIR=mimic
|
||||
CORES=$(nproc)
|
||||
MIMIC_VERSION=1.1.0
|
||||
|
||||
# download and install mimic
|
||||
if [ ! -d ${MIMIC_DIR} ]; then
|
||||
git clone https://github.com/MycroftAI/mimic.git
|
||||
git clone --branch ${MIMIC_VERSION} https://github.com/MycroftAI/mimic.git
|
||||
cd ${MIMIC_DIR}
|
||||
./configure --with-audio=alsa
|
||||
make #-j$CORES
|
||||
|
|
Loading…
Reference in New Issue