From 15adf8d300388bb7e74250d8c16ee9beff05dfcb Mon Sep 17 00:00:00 2001 From: Dylan Jhaveri Date: Wed, 18 Feb 2026 11:27:52 -0800 Subject: [PATCH 1/2] fix: add execute permissions to binary before publishing --- scripts/publish.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/publish.sh b/scripts/publish.sh index cb34eb2..6204008 100755 --- a/scripts/publish.sh +++ b/scripts/publish.sh @@ -80,6 +80,7 @@ for target in $TARGETS; do pkg_dir="./packages/@mux/cli-${target}" cp "$BINARY_DIR/mux-${target}" "${pkg_dir}/mux" + chmod +x "${pkg_dir}/mux" echo "Publishing @mux/cli-${target}@${VERSION}..." (cd "$pkg_dir" && npm publish --access public --tag "$NPM_TAG" $PROVENANCE) rm -f "${pkg_dir}/mux" From 1f9f21e2f64ef51de9bbf9f41b096148542cb451 Mon Sep 17 00:00:00 2001 From: Dylan Jhaveri Date: Wed, 18 Feb 2026 11:29:42 -0800 Subject: [PATCH 2/2] docs: use beta tag for npm install instructions Co-Authored-By: Claude Opus 4.6 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 76317b2..4b638a5 100644 --- a/README.md +++ b/README.md @@ -7,13 +7,13 @@ A command-line interface for interacting with the Mux API, designed to provide a ### Install via npm ```bash -npm install -g @mux/cli +npm install -g @mux/cli@beta ``` Or run directly with npx: ```bash -npx @mux/cli@latest +npx @mux/cli@beta ``` ### Shell installer