Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions scripts/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down