mirror of
https://github.com/OpenVoiceOS/OpenVoiceOS
synced 2024-12-28 01:30:59 +01:00
7 lines
109 B
Plaintext
7 lines
109 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# home persistent overlay
|
||
|
if [ ! -d /mnt/home/mycroft ]; then
|
||
|
cp -a /home/mycroft /mnt/home/
|
||
|
fi
|