update to latest hugo, obtain hugo using go instead of docker

This commit is contained in:
Benjamin Elder
2023-05-16 21:54:58 -07:00
parent 062b84728e
commit 856f984eef
6 changed files with 1243 additions and 8 deletions

13
site/tools.go Normal file
View File

@@ -0,0 +1,13 @@
//go:build tools
// +build tools
/*
Package site is used to track binary dependencies with go modules
https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
Namely: hugo
*/
package site
import (
_ "github.com/gohugoio/hugo"
)