14 lines
218 B
Bash
Executable File
14 lines
218 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
DIR="$(dirname -- "${BASH_SOURCE[0]}")"
|
|
cd $DIR
|
|
|
|
rm -rfv public
|
|
mkdir -pv public
|
|
|
|
if [[ ! -f static/style.css ]]; then
|
|
cp -rv themes/lugo/static/style.css static/
|
|
fi
|
|
|
|
hugo server -D --noBuildLock
|