Skip to content

Commit eea63d0

Browse files
nawi-25claude
andcommitted
fix: correct npm tarball URL format for scoped package
Scoped package tarballs drop the scope prefix in the filename: correct: @node9/proxy/-/proxy-{version}.tgz incorrect: @node9/proxy/-/@node9/proxy-{version}.tgz Also bump formula to v1.0.12 (actual latest on npm). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 01bbc8a commit eea63d0

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/bump.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
id: sha
1717
run: |
1818
VERSION="${{ github.event.client_payload.version }}"
19-
URL="https://registry.npmjs.org/@node9/proxy/-/@node9/proxy-${VERSION}.tgz"
19+
URL="https://registry.npmjs.org/@node9/proxy/-/proxy-${VERSION}.tgz"
2020
SHA=$(curl -sL "$URL" | sha256sum | awk '{print $1}')
2121
echo "version=$VERSION" >> $GITHUB_OUTPUT
2222
echo "sha256=$SHA" >> $GITHUB_OUTPUT

Formula/node9.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
class Node9 < Formula
22
desc "The Sudo Command for AI Agents — execution security for Claude Code & MCP"
33
homepage "https://github.com/node9-ai/node9-proxy"
4-
url "https://registry.npmjs.org/@node9/proxy/-/@node9/proxy-1.0.9.tgz"
5-
sha256 "184df78cae4076159d3ab973c9b61a4c06c22c31d16a02f2c036f24ae7543c38"
4+
url "https://registry.npmjs.org/@node9/proxy/-/proxy-1.0.12.tgz"
5+
sha256 "4b075b9d5bbd50195acd31f30c458b73fca174d065e2246496d771add44d1407"
66
license "Apache-2.0"
77

88
depends_on "node"

0 commit comments

Comments
 (0)