Skip to content

Commit

Permalink
Makefile: Fix a couple of typos (#648)
Browse files Browse the repository at this point in the history
The .PHONY should match the target name.
  • Loading branch information
mgalgs authored and mumoshu committed Mar 20, 2019
1 parent c37657c commit 1f8fa39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -161,12 +161,12 @@ JEKYLL := docker run --tty --rm \

##@ Site

.PHONY: server-pages
.PHONY: serve-pages
serve-pages: ## Serve the site locally
@-docker rm -f eksctl-jekyll
@$(JEKYLL) jekyll serve -d /_site --watch --force_polling -H 0.0.0.0 -P 4000

.PHONY: build-page
.PHONY: build-pages
build-pages: ## Generate the site using jekyll
@-docker rm -f eksctl-jekyll
@$(JEKYLL) jekyll build --verbose
Expand Down

0 comments on commit 1f8fa39

Please sign in to comment.