From 7dc9458167dee348e7fa5137258c6d15f7964782 Mon Sep 17 00:00:00 2001 From: Dmitry Kurkin Date: Wed, 18 Jan 2017 20:30:25 +0200 Subject: [PATCH] make: Fix typo --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6e6d4ec17..a361ca828 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ hugo: vendor ## Build hugo binary go build ${LDFLAGS} ${PACKAGE} hugo-race: vendor ## Build hugo binary with race detector enabled - go build -race ${LDFLAGS} ${PACAGE} + go build -race ${LDFLAGS} ${PACKAGE} install: vendor ## Install hugo binary go install ${LDFLAGS} ${PACKAGE}