Skip to content

Commit 6761831

Browse files
authored
fix: point runtime pack URL at stemdeckapp, not old thcp repo (#199)
CI never sets RELEASE_BASE_URL, so every macOS release manifest baked the old thcp/stemdeck download URL. It only worked via GitHub's transfer redirect, which is outside our control and would 404 if a repo named stemdeck is ever recreated under thcp. Point the default at the repo we own. Future releases only.
1 parent 091ba3f commit 6761831

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/macos/make-runtime-pack.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -euo pipefail
44
ARCH="${ARCH:-arm64}"
55
VERSION="${VERSION:-LOCAL_DEV_TEST}"
66
VERSION="${VERSION#v}"
7-
RELEASE_BASE_URL="${RELEASE_BASE_URL:-https://github.com/thcp/stemdeck/releases/download/v${VERSION}}"
7+
RELEASE_BASE_URL="${RELEASE_BASE_URL:-https://github.com/stemdeckapp/stemdeck/releases/download/v${VERSION}}"
88
REPO_ROOT="$(cd "$(dirname "$0")/../.." && pwd)"
99
BUILD_DIR="${REPO_ROOT}/.build"
1010
STAGING="${BUILD_DIR}/runtime-staging-${ARCH}"

0 commit comments

Comments
 (0)