8 lines
130 B
Bash
Executable file
8 lines
130 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
|
|
# failures are evil
|
|
set -e
|
|
|
|
# run hugo in local server mode, show all stuff
|
|
exec hugo server -D --buildFuture
|