mirror of
https://github.com/OpenVoiceOS/OpenVoiceOS
synced 2025-02-14 02:40:36 +01:00
13 lines
384 B
Bash
Executable File
13 lines
384 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
|
|
printf "Git stashing pre-installed skills ..."
|
|
cd /opt/mycroft/.skills-rep && git stash
|
|
cd /opt/mycroft/skills/skill-balena-wifi-setup && git stash
|
|
cd /opt/mycroft/skills/skill-ovos-enclosure && git stash
|
|
cd /opt/mycroft/skills/skill-ovos-mycroftgui && git stash
|
|
cd /opt/mycroft/skills/skill-ovos-pairing && git stash
|
|
chown -R mycroft.mycroft /opt/mycroft
|
|
echo "[OK]"
|
|
|