-
Notifications
You must be signed in to change notification settings - Fork 142
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
mapfile: command not found
under macOS
#15
Comments
The problem is that macOS has bash 3 and I found a solution, add this step in front in your workflow: - if: contains( matrix.os, 'macos')
name: Install bash 5.0 under macOS for mapfile
run: |
brew install bash
sudo mv /usr/local/bin/bash /bin/bash
|
For whoever arrived here via a search: Github actions now support custom shells: |
Under macOS you will get the error
mapfile: command not found
if you'll try the CSV example to fix the problem with spaces in filenames.The text was updated successfully, but these errors were encountered: