Skip to content

Commit

Permalink
fix(makefile): use the extended Hugo version by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Mayeu committed Apr 5, 2020
1 parent a339779 commit cb0278c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ SHELL := /bin/bash
# Hugo binary download
HUGO_VERSION ?= 0.54.0
HUGO_PLATFORM ?= macOS-64bit
HUGO_FULL_VERSION = $(HUGO_VERSION)_$(HUGO_PLATFORM)
HUGO_FLAVOR ?= extended_
HUGO_FULL_VERSION = $(HUGO_FLAVOR)$(HUGO_VERSION)_$(HUGO_PLATFORM)
HUGO_URL = "https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_FULL_VERSION}.tar.gz"
HUGO = bin/hugo

Expand Down

0 comments on commit cb0278c

Please sign in to comment.