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