hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit 66a169a24967681dbf91dad6e1f9fd5dd624d95e
parent 2cc4765670b27f74f68e1614b1763a7819e02854
Author: Cameron Moore <moorereason@gmail.com>
Date:   Thu,  5 Oct 2017 12:54:40 -0500

Simplify HugoNoGitInfo in magefile

Diffstat:
Mmagefile.go | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/magefile.go b/magefile.go
@@ -69,9 +69,9 @@ func flagEnv() map[string]string {
 }
 
 // Build hugo without git info
-func HugoNoGitInfo() {
+func HugoNoGitInfo() error {
 	ldflags = noGitLdflags
-	mg.Deps(Vendor, Hugo)
+	return Hugo()
 }
 
 var docker = sh.RunCmd("docker")