7 lines
151 B
Bash
Executable file
7 lines
151 B
Bash
Executable file
#!/bin/sh
|
|
|
|
mkdir -p www
|
|
cp -rf src/assets www/assets
|
|
cp -f src/index.html www/index.html
|
|
cp -f src/impressum.html www/impressum.html
|
|
cp -rf src/* www/
|