From dc68386d1aaa68111f31cd47902aa3191c011d95 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Sat, 25 Jul 2026 19:19:05 -0400 Subject: [PATCH] desktop: point the install command at a branch that exists MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The advertised curl URL referenced raw/branch/main, but main has never been created (creating it is rejected by a branch-protection rule that matches the name even with no branch behind it), so the one-command install 404'd. dev is currently the repo's only branch and serves the script fine now that the repo is public — verified 200, with all three v0.1.0 release assets resolving and the AppImage downloading in full. Flagged in the header to move back to main once that branch exists, so the public install command stops tracking day-to-day work. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01SreJkbxB4gx8pPsu8QbLPi --- desktop/packaging/install.sh | 6 +++++- desktop/packaging/publish-release.sh | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/desktop/packaging/install.sh b/desktop/packaging/install.sh index dfc9cbd..4cfacaa 100755 --- a/desktop/packaging/install.sh +++ b/desktop/packaging/install.sh @@ -2,7 +2,11 @@ # # ThoughtSync desktop — one-command Linux installer. # -# curl -fsSL https://git.fabledsword.com/bvandeusen/thoughtsync/raw/branch/main/desktop/packaging/install.sh | sh +# curl -fsSL https://git.fabledsword.com/bvandeusen/thoughtsync/raw/branch/dev/desktop/packaging/install.sh | sh +# +# Points at `dev` because that is currently the repo's only branch — `main` does +# not exist yet, so a main URL 404s. Move this to `main` once that branch is +# created, so the public install command stops tracking day-to-day work. # # Fetches the LATEST published release for this machine's architecture and # installs it, ending with a working app + menu entry. Native-first: diff --git a/desktop/packaging/publish-release.sh b/desktop/packaging/publish-release.sh index 20c38f4..32a1c7d 100755 --- a/desktop/packaging/publish-release.sh +++ b/desktop/packaging/publish-release.sh @@ -76,7 +76,7 @@ first_id() { grep -oE '"id"[[:space:]]*:[[:space:]]*[0-9]+' | head -1 | grep -oE echo "==> Creating release for $TAG" BODY=$(cat <