8 lines
164 B
Bash
Executable file
8 lines
164 B
Bash
Executable file
#!/bin/sh
|
|
|
|
mkdir -p www
|
|
cp -rf src/assets www/assets
|
|
cp -f src/index.html www/
|
|
cp -f src/new-landing-page.html www/
|
|
cp -f src/impressum.html www/
|
|
cp -rf src/* www/
|