From 3c386af2cf86067a6ecd3fafab406cbc026334a9 Mon Sep 17 00:00:00 2001 From: jack-mil <62065280+jack-mil@users.noreply.github.com> Date: Sun, 3 Aug 2025 04:57:11 -0400 Subject: [PATCH] balena-cli: Fix and update to version 22.1.4 (#6970) * balena-cli: Update to version 22.1.2 Fixes 404 errors in CI Excavator. Apparently they have completely changed the distribution format and contents. A standalone executable is no longer provided, instead a cmd/bash script uses a redistributable node executable to execute the JS/TS app. Upstream recommends the installer for Windows. Seems like no one has noticed this for 2 months, maybe should be removed from scoop? * fix: try shimming the .cmd script again somehow works now --- bucket/balena-cli.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bucket/balena-cli.json b/bucket/balena-cli.json index d79446be1b..e934789449 100644 --- a/bucket/balena-cli.json +++ b/bucket/balena-cli.json @@ -1,21 +1,21 @@ { - "version": "21.1.14", + "version": "22.1.4", "description": "Official balena CLI for interacting with balenaCloud and balena API.", "homepage": "https://github.com/balena-io/balena-cli", "license": "Apache-2.0", "architecture": { "64bit": { - "url": "https://github.com/balena-io/balena-cli/releases/download/v21.1.14/balena-cli-v21.1.14-windows-x64-standalone.zip", - "hash": "fecd5a9374611d0c5e3477b46e480b1b4b3ab0781583acc42ed8368b96608d0b" + "url": "https://github.com/balena-io/balena-cli/releases/download/v22.1.4/balena-cli-v22.1.4-windows-x64-standalone.tar.gz", + "hash": "8ec9bdbfaf34f179015297fcbd397d89eac220e1cdada117f273dabc18e9e440" } }, - "extract_dir": "balena-cli", - "bin": "balena.exe", + "extract_dir": "balena", + "bin": "bin/balena.cmd", "checkver": "github", "autoupdate": { "architecture": { "64bit": { - "url": "https://github.com/balena-io/balena-cli/releases/download/v$version/balena-cli-v$version-windows-x64-standalone.zip" + "url": "https://github.com/balena-io/balena-cli/releases/download/v$version/balena-cli-v$version-windows-x64-standalone.tar.gz" } } }