mirror of
https://github.com/OpenVoiceOS/OpenVoiceOS
synced 2025-02-10 08:50:54 +01:00
16 lines
567 B
Bash
Executable File
16 lines
567 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
|
|
cd /opt/mycroft/skills/skill-ovos-homescreen && git stash
|
|
cd /opt/mycroft/skills/mycroft-date-time.mycroftai && git stash
|
|
cd /opt/mycroft/skills/mycroft-volume.mycroftai && git stash
|
|
chown -R mycroft.mycroft /opt/mycroft
|
|
echo "[OK]"
|
|
|