From e5dc93263cab72c60d40f45b691f8c67c142bdbf Mon Sep 17 00:00:00 2001 From: Chmouel Boudjnah Date: Mon, 29 Sep 2025 09:26:27 +0200 Subject: [PATCH] fix: Update default NPM package to Claude Code ACP The default value for the NPM package to update was changed from `@github/copilot` to `@zed-industries/claude-code-acp`. This aligns the script with the current package being maintained or targeted by the update process. --- updpkg.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/updpkg.sh b/updpkg.sh index bcf56a1bf939..8cf27f1acf72 100755 --- a/updpkg.sh +++ b/updpkg.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # Author: Chmouel Boudjnah set -eufo pipefail -NPM_PACKAGE="${NPM_PACKAGE:-@github/copilot}" +NPM_PACKAGE="${NPM_PACKAGE:-@zed-industries/claude-code-acp}" latest=$(curl -s "https://registry.npmjs.org/${NPM_PACKAGE}/latest" | jq -r '.version') pkgversion=$(grep '^pkgver=' PKGBUILD) @@ -21,4 +21,3 @@ makepkg -srif git commit -m "Bump to ${latest}" PKGBUILD .SRCINFO git clean -f . rm -f *tgz *zst -