mirror of
https://github.com/travisgoodspeed/goodwatch
synced 2024-11-22 16:59:57 +00:00
14 lines
209 B
Makefile
14 lines
209 B
Makefile
|
|
all: theme
|
|
|
|
|
|
theme:
|
|
mkdir -p themes
|
|
cd themes && ls hugo_theme_robust || git clone https://github.com/dim0627/hugo_theme_robust.git
|
|
server: theme
|
|
hugo server
|
|
deploy:
|
|
hugo
|
|
cp -rf public/* /var/www/html/
|
|
|