mirror of
https://github.com/Relintai/pandemonium_engine_docs.git
synced 2025-01-06 15:00:03 +01:00
23 lines
206 B
Bash
Executable File
23 lines
206 B
Bash
Executable File
#!/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 |