Skip to content
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

fix to work with other shells than bash #173

Merged
merged 1 commit into from
Oct 20, 2024

Conversation

nosektom
Copy link
Contributor

These [ $d == "blarb" ] conditions are correctly evaluated only in bash. To allow for other shells, you need one of these:

if [ $d = "blarb" ]; then

or

if [[ $d == "blarb" ]]; then

Pull request description

Changes or fixes

Examples

These [ $d == "blarb" ] conditions are correctly evaluated only in bash. To allow for other shells, you need one of these:

if [ $d = "blarb" ]; then

or

if [[ $d == "blarb" ]]; then
Copy link

Hi @nosektom, thank you for contributing to MaCh3! Please wait for MaCh3 developers to review your PR. If no one answers within a week, please message people from this list: https://github.com/orgs/mach3-software/teams/mach3admin . While waiting, please enjoy this

meme

Use this action on your projects. Use jokes on issues instead.

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is your first PR, thank you for contributing to MaCh3!

@KSkwarczynski KSkwarczynski merged commit 22bd734 into develop Oct 20, 2024
10 of 11 checks passed
@KSkwarczynski KSkwarczynski deleted the setup-fix-shellinclusive branch October 20, 2024 13:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants