mirror of
https://github.com/Relintai/pandemonium_engine_docs.git
synced 2025-01-04 14:49:52 +01:00
wwwroot copy script.
This commit is contained in:
parent
2a414ea2ea
commit
b5a44fbb7b
23
_tools/pdocs/cp_www.sh
Executable file
23
_tools/pdocs/cp_www.sh
Executable 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
|
Loading…
Reference in New Issue
Block a user