- Sitename: scottrlarson.netlify.app (I think thats it)
- Site: scottRlarson dot com (wont let me add more than 6 links)
- Build Error Log below
- Asked netlify AI and it said to check my config and it said
Diagnosis
- Relevant log lines: build runs custom command ‘hugo’ (line 8), mise attempts to install hugo-extended (line 13), the dependency install step fails (line 14) with a 404 when trying to fetch aqua:gohugoio/hugo/hugo-extended@0.40.3 (line 15). The release asset list shows only generic hugo artifacts (e.g. hugo_0.40.3_Linux-ARM64.tar.gz at line 29) and no “extended” variant for that platform, so the installer could not find the requested hugo-extended binary and returned 404 (see asset list lines 16–38).
Cause
- The build tooling (mise/aqua) is configured to install gohugoio/hugo/hugo-extended@0.40.3, but that specific Hugo release does not provide a matching “extended” release asset for the build platform/architecture. mise/aqua requests an asset name that doesn’t exist, causing the 404 and failing dependency installation.
The solution was to add a variable or check my netlify.toml. I don’t appear to be using hugo extended.
[build]
publish = "public"
command = "hugo"
[build.environment]
HUGO_VERSION = "0.40.3"
Build Error Log:
9:08:43 PM: build-image version: 61439bcb1c7da9fe83a0d0117412601aca53908b (noble-new-builds)
9:08:43 PM: buildbot version: 61439bcb1c7da9fe83a0d0117412601aca53908b
9:08:44 PM: Fetching cached dependencies
9:08:44 PM: Failed to fetch cache, continuing with build
9:08:44 PM: Starting to prepare the repo for build
9:08:44 PM: No cached dependencies found. Cloning fresh repo
9:08:44 PM: git clone --filter=blob:none git@gitlab.com:scottrlarson/profession
9:08:45 PM: Preparing Git Reference refs/heads/master
9:08:50 PM: Custom build command detected. Proceeding with the specified command: 'hugo'
9:08:50 PM: Starting to install dependencies
9:08:50 PM: mise ~/.config/mise/config.toml tools: python@3.14.3
9:08:51 PM: mise ~/.config/mise/config.toml tools: ruby@3.4.8
9:08:51 PM: mise ~/.config/mise/config.toml tools: go@1.26.0
9:08:51 PM: mise hugo-extended@0.40.3 [1/3] install
9:08:52 PM: Failed during stage 'Install dependencies': dependency_installation script returned non-zero exit code: 1
9:08:52 PM: mise ERROR Failed to install aqua:gohugoio/hugo/hugo-extended@0.40.3: HTTP status client error (404 Not Found) for url (https://api.github.com/repos/gohugoio/hugo/releases/tags/0.40.3): no asset found: hugo_extended_0.40.3_Linux-64bit.tar.gz
9:08:52 PM: Available assets:
9:08:52 PM: hugo_0.40.3_checksums.txt
9:08:52 PM: hugo_0.40.3_DragonFlyBSD-64bit.tar.gz
9:08:52 PM: hugo_0.40.3_FreeBSD-32bit.tar.gz
9:08:52 PM: hugo_0.40.3_FreeBSD-64bit.tar.gz
9:08:52 PM: hugo_0.40.3_FreeBSD-ARM.tar.gz
9:08:52 PM: hugo_0.40.3_Linux-32bit.deb
9:08:52 PM: hugo_0.40.3_Linux-32bit.tar.gz
9:08:52 PM: hugo_0.40.3_Linux-64bit.deb
9:08:52 PM: hugo_0.40.3_Linux-64bit.tar.gz
9:08:52 PM: hugo_0.40.3_Linux-ARM.deb
9:08:52 PM: hugo_0.40.3_Linux-ARM.tar.gz
9:08:52 PM: hugo_0.40.3_Linux-ARM64.deb
9:08:52 PM: hugo_0.40.3_Linux-ARM64.tar.gz
9:08:52 PM: hugo_0.40.3_macOS-32bit.tar.gz
9:08:52 PM: hugo_0.40.3_macOS-64bit.tar.gz
9:08:52 PM: hugo_0.40.3_NetBSD-32bit.tar.gz
9:08:52 PM: hugo_0.40.3_NetBSD-64bit.tar.gz
9:08:52 PM: hugo_0.40.3_NetBSD-ARM.tar.gz
9:08:52 PM: hugo_0.40.3_OpenBSD-32bit.tar.gz
9:08:52 PM: hugo_0.40.3_OpenBSD-64bit.tar.gz
9:08:52 PM: hugo_0.40.3_Windows-32bit.zip
9:08:52 PM: hugo_0.40.3_Windows-64bit.zip
9:08:52 PM: mise ERROR Run with --verbose or MISE_VERBOSE=1 for more information
9:08:52 PM: Error during Hugo 0.40.3 install
9:08:52 PM: Failing build: Failed to install dependencies
9:08:52 PM: Finished processing build request in 8.452s