-
Notifications
You must be signed in to change notification settings - Fork 81
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
Unnecessary dependency on bash #13
Comments
Note that the documentation is faulty here:
It does not fall back to |
I think you are having issues here because you don't have Because |
I know, we're using busybox |
Fair enough I take that back. The fallback also does not seem to work if we do specify a |
Does Windows need to specify 'bash'? Yes you can technically install it, but it seems an unnecessary dependency/complication? |
This action sets
shell: bash
when running simple commands, which causes it to fail in environments where bash isn't available instead of falling back tosh
.I believe the fix is to
remove thereplaceshell: bash
linesshell: bash
withshell: sh
for linux and macos, not sure about windows. See the documentation hereThe text was updated successfully, but these errors were encountered: