1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2025-09-15 22:35:31 -04:00

Hugo v0.81.0

added Apple Silicon binary (not detected by bin-wrapper yet, though)
This commit is contained in:
2021-02-20 22:45:54 -05:00
parent 55e4269f5e
commit 664f725d71
3 changed files with 12830 additions and 1135 deletions

View File

@@ -10,6 +10,7 @@ const baseUrl = `https://github.com/gohugoio/hugo/releases/download/v${version}/
module.exports = new BinWrapper()
.src(`${baseUrl}hugo_extended_${version}_Linux-64bit.tar.gz`, 'linux', 'x64')
.src(`${baseUrl}hugo_extended_${version}_macOS-64bit.tar.gz`, 'darwin', 'x64')
.src(`${baseUrl}hugo_extended_${version}_macOS-ARM64.tar.gz`, 'darwin', 'arm64')
.src(`${baseUrl}hugo_extended_${version}_Windows-64bit.zip`, 'win32', 'x64')
.src(`${baseUrl}hugo_${version}_Linux-32bit.tar.gz`, 'linux', 'x86')
.src(`${baseUrl}hugo_${version}_Linux-ARM.tar.gz`, 'linux', 'arm')