8 lines
125 B
Bash
8 lines
125 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# failures are evil
|
||
|
set -e
|
||
|
|
||
|
# run hugo in local server mode, show all stuff
|
||
|
exec ./hugo server -D --buildFuture
|