Ver código fonte

Install as a first step

Kevin van Zonneveld 9 anos atrás
pai
commit
0f15b4872c
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      Makefile

+ 2 - 2
Makefile

@@ -9,12 +9,12 @@ website-install:
 	@cd website && npm install
 
 .PHONY: website-build
-website-build:
+website-build: website-install
 	@echo "--> Building site.."
 	@cd website && ./node_modules/.bin/hexo generate
 
 .PHONY: website-preview
-website-preview: website-install website-build
+website-preview: website-build
 	@echo "--> Running preview.."
 	@cd website && ./node_modules/.bin/hexo server