20 lines
424 B
Bash
Executable File
20 lines
424 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SKILLS_DIR='/opt/mycroft/skills'
|
|
# exit on any error
|
|
set -Ee
|
|
rm -rf msm
|
|
git clone https://github.com/MycroftAI/msm.git msm
|
|
chmod +x msm/msm
|
|
|
|
if [[ ${IS_TRAVIS} != true ]]; then
|
|
echo "Create /opt/mycroft/skills if it doesn't exist"
|
|
if [ ! -d ${SKILLS_DIR} ]; then
|
|
sudo chown $USER:$USER ${SKILLS_DIR}
|
|
fi
|
|
|
|
if [ ! -w ${SKILLS_DIR} ]; then
|
|
sudo mkdir -p ${SKILLS_DIR}
|
|
fi
|
|
fi
|