-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deprivatize): scrub private references for public release #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
75c68be
e355170
a1cb3ca
facbbd7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,7 +4,7 @@ umask 022 | |
|
|
||
| # rust_mux install script | ||
| # Usage: | ||
| # curl -fsSL https://raw.githubusercontent.com/LibraxisAI/rust_mux/main/tools/install.sh | sh | ||
| # curl -fsSL https://raw.githubusercontent.com/Loctree/rust-mux/main/tools/install.sh | sh | ||
| # Env overrides: | ||
| # INSTALL_DIR where to place the runnable `rust_mux` wrapper (default: $HOME/.local/bin) | ||
| # CARGO_HOME override cargo home (default: ~/.cargo) | ||
|
|
@@ -14,7 +14,7 @@ umask 022 | |
| INSTALL_DIR=${INSTALL_DIR:-"$HOME/.local/bin"} | ||
| CARGO_HOME=${CARGO_HOME:-"$HOME/.cargo"} | ||
| CARGO_BIN="$CARGO_HOME/bin" | ||
| REPO_URL="https://github.com/LibraxisAI/rust_mux" | ||
| REPO_URL="https://github.com/Loctree/rust-mux" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. While updating the repository URL is correct, the installation script will fail because it still references Specifically:
Please update these references in the script to ensure the installation works correctly. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
When this script is fetched from the new Useful? React with 👍 / 👎. |
||
| # Allow pinning a branch/tag/commit; defaults to main. | ||
| MUX_REF=${MUX_REF:-"main"} | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,7 +3,7 @@ | |
| <plist version="1.0"> | ||
| <dict> | ||
| <key>Label</key> | ||
| <string>com.libraxis.mcp-mux.general-memory</string> | ||
| <string>com.loctree.rust-mux.general-memory</string> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The plist template still references Please update line 11 to use <string>/Users/YOUR_USER/.cargo/bin/rust-mux</string>Additionally, consider renaming this file from |
||
|
|
||
| <!-- Adjust paths below to your environment --> | ||
| <key>ProgramArguments</key> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Throughout the README, the binary is referred to as
rust_mux(with an underscore) in the usage examples and paths (e.g.,./target/release/rust_mux,rust_mux wizard, etc.).Since the package name in
Cargo.tomlhas been rebranded torust-mux(with a hyphen), the compiled binary will actually be namedrust-mux. Please update the README examples to userust-muxto avoid confusing users who copy-paste the commands.