11 lines
225 B
Makefile
11 lines
225 B
Makefile
|
# use PowerShell instead of sh:
|
||
|
set shell := ["powershell.exe", "-c"]
|
||
|
|
||
|
|
||
|
# view the blog as it would be published in a browser
|
||
|
view:
|
||
|
zola serve
|
||
|
|
||
|
# view the blog with drafts in a browser
|
||
|
view-drafts:
|
||
|
zola serve --drafts
|