14 lines
327 B
Go
14 lines
327 B
Go
package conf
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
var (
|
|
// HugoVersion is the version of Hugo used.
|
|
HugoVersion = "0.124.1"
|
|
|
|
// HugoReleaseURL is the URL where Hugo can be downloaded from.
|
|
HugoReleaseURL = fmt.Sprintf("https://github.com/gohugoio/hugo/releases/download/v%s/hugo_extended_%s_linux-amd64.tar.gz", HugoVersion, HugoVersion)
|
|
)
|