You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (-not (Get-Command hugo -ErrorAction Ignore)) {
throw"Hugo is not installed. Please install Hugo extended edition from https://gohugo.io/getting-started/installing/"
}
$HugoVersion= hugo version
if (-not ($HugoVersion-match'hugo v(?<version>\d+\.\d+\.\d+)[^+]+\+extended')) {
throw"Hugo is installed but not the extended edition. Please install Hugo extended edition from https://gohugo.io/getting-started/installing/"
}
if ([version]($Matches.version) -lt [version]'0.115.0') {
throw"Hugo is installed but the version is too old. Please install Hugo extended edition, minimum version 0.115.0, from https://gohugo.io/getting-started/installing/"
}
if (-not (Get-Command go)) {
throw"Go is not installed. Please install Go 1.19 or higher from https://golang.org/dl/"