wwwroot copy script.

This commit is contained in:
Relintai 2024-05-04 18:00:33 +02:00
parent 2a414ea2ea
commit b5a44fbb7b

23
_tools/pdocs/cp_www.sh Executable file
View File

@ -0,0 +1,23 @@
#!/bin/bash
rm -Rf www
mkdir www
cd www
touch .gdignore
cd ..
cd ..
cd ..
for f in *
do
if [[ "$f" == "_tools"* ]]; then
continue
fi
echo "copying $f"
cp -R "$f" "_tools/pdocs/www/"
done