gmgsite/compile

8 lines
100 B
Plaintext
Executable File

#/bin/bash
if [[ -d "public" ]]; then
rm -rf public/* && hugo
else
mkdir public && hugo
fi