Open
Conversation
This fixes the issue where the installation instructions are instructing to have the user run the install script under the wrong shell.
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.
What is this PR about?
This fixes the issue where the installation instructions are instructing to have the user run the install script under the wrong shell.
Checklist
Before submitting this PR, please make sure that:
canarybranch.Greptile Summary
This PR updates the installation command in
README.mdto explicitly usebashinstead ofshwhen piping the install script. This is a valid documentation fix: on many Linux distributions (e.g. Ubuntu, Debian),shresolves todash, which lacks bash-specific features that the install script likely relies on, causing the install to fail or behave unexpectedly. The markdown code block was already annotated asbash, so the command now matches the declared shell, eliminating a source of installation failures.Confidence Score: 5/5
shwithbashin the install command aligns the actual shell invoked with the code block language hint and prevents installation failures on systems whereshisdash. No source code, logic, or configuration is affected. The fix directly addresses a known issue in the installation instructions.Last reviewed commit: 2da45d3