6 lines
77 B
Bash
6 lines
77 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
cp -r ./public ../dist/public_html
|
||
|
|
||
|
echo "finished building HTML"
|