Skip to content

Commit c79a3c8

Browse files
Merge pull request #283 from corbitsdev/cl-4822-point-the-release-homebrew-tap-at-corbitsdevhomebrew-tap-and
Point the release Homebrew tap at corbitsdev/homebrew-tap
2 parents 7e79cef + e541aff commit c79a3c8

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "corbits",
2+
"name": "@corbits/code",
33
"version": "0.2.86",
44
"description": "Single-process coding agent CLI built on the Interchange runtime (Bun + TypeScript)",
55
"private": true,

scripts/release.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# 5. pushes the release commit and tag only after artifacts exist,
1616
# 6. creates the GitHub release on corbitsdev/corbits-code with those assets,
1717
# 7. regenerates the Homebrew formula (per-arch url + sha256) in the
18-
# corbitsdev/code tap and pushes it, so `brew install corbits` works.
18+
# corbitsdev/homebrew-tap tap and pushes it, so `brew install corbits` works.
1919
#
2020
# Every step is idempotent: a stage whose artifact already exists is skipped,
2121
# so a half-finished release can be completed by re-running with the version.
@@ -24,15 +24,15 @@
2424
#
2525
# Requirements: run on a Mac with git, gh (authenticated), bun, jq, ar, tar,
2626
# and shasum available. `bun build --compile` cross-compiles every target
27-
# from here; no Linux host is needed. For the tap step, the corbitsdev/code
28-
# tap must be tapped (brew tap corbitsdev/code) or reachable so it can clone.
27+
# from here; no Linux host is needed. For the tap step, the corbitsdev/tap
28+
# tap must be tapped (brew tap corbitsdev/tap) or reachable so it can clone.
2929

3030
set -euo pipefail
3131

3232
# ---- configuration ---------------------------------------------------------
3333
MAIN_REPO="corbitsdev/corbits-code" # source repo (releases + tags)
34-
TAP_REPO="corbitsdev/homebrew-code" # tap repo (formula)
35-
TAP_SLUG="corbitsdev/code" # `brew tap' name of TAP_REPO
34+
TAP_REPO="corbitsdev/homebrew-tap" # tap repo (formula)
35+
TAP_SLUG="corbitsdev/tap" # `brew tap' name of TAP_REPO
3636
FORMULA="corbits" # formula / binary name
3737
DESC="Single-process coding agent CLI built on the Interchange runtime"
3838
DOC_FILES=(LICENSE.md README.md GPLv2-AI-Exception.md GPL-2.0.txt) # shipped with the binary

0 commit comments

Comments
 (0)