fix: update install script to use mesh-cli repo name#433
Open
Kubudak90 wants to merge 1 commit into
Open
Conversation
🟡 Heimdall Review Status
|
e5cf320 to
96a829c
Compare
Fixes coinbase#422. The repo was renamed from rosetta-cli to mesh-cli, but the install script still referenced the old name. This caused installation failures when GitHub redirects stopped working. Changes: - Updated all references from rosetta-cli to mesh-cli in install.sh - Updated binary names for all platforms - Updated repo URL references This ensures the install script works correctly with the new repo name.
96a829c to
c91787f
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes #422
The repository was renamed from
rosetta-clitomesh-cli, but the install script still referenced the old name. This caused installation failures when GitHub redirects stopped working (as noted in the issue, this started failing on 2025/04/01).Changes
Updated all references from
rosetta-clitomesh-cliinscripts/install.sh:coinbase/mesh-clihttps://github.com/coinbase/mesh-cli/releasesBINARYvariable assignments for all platforms (darwin, linux, windows)REPOvariable at the end of the scriptTesting
The install command from the README should now work:
curl -sSfL https://raw.githubusercontent.com/coinbase/mesh-cli/master/scripts/install.sh | sh -sRelated