Added init cloning

This commit is contained in:
2022-02-06 13:00:57 +01:00
parent d3be192a3b
commit f741e20cf8

4
watch.sh Normal file → Executable file
View File

@@ -2,6 +2,10 @@ init() {
for dir in frontend backend out; do
if [ ! -d $dir ]; then
mkdir $dir
if [ $dir != "out" ]; then
echo Cloning $dir
git clone https://mhsl.eu/gitea/TheAdversary/$dir.git
fi
fi
done
}