Add copylibs script

This commit is contained in:
Robin Hüskes 2022-11-27 23:23:18 +01:00
parent ea472050bf
commit 5ad6c21986
1 changed files with 14 additions and 0 deletions

14
Scripts/copylibs.sh Normal file
View File

@ -0,0 +1,14 @@
#!/bin/bash
src="../zzLib/Libs"
start=".."
findterm="Libs/zzAddOn"
for entry in "$start"/*
do
if [ -e "$entry/$findterm" ]
then
echo "$entry"
cp -ra $src $entry
cd $entry
git commit "Libs/*" -m "Update Libs" && git push
fi
done