We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The regular expression used in the action.yml file:
PKGS=$( \ echo '${{ steps.bindep.outputs.packages }}' \ | \ sed 's#\(^\s\+\|\s\+$\)##g;s#\s#\,#g' \ )
does not work with the "sed" command in MacOS.
For example, it replaces "s" with comma:
$ echo 'libxslt' | sed 's#\(^\s\+\|\s\+$\)##g;s#\s#\,#g' libx,lt
Log file: https://github.com/pywbem/pywbem/actions/runs/9377087850/job/25818072248#step:11:108
It also does not strip blanks:
$ echo ' libxml2' | sed 's#\(^\s\+\|\s\+$\)##g;s#\s#\,#g' libxml2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The regular expression used in the action.yml file:
does not work with the "sed" command in MacOS.
For example, it replaces "s" with comma:
Log file: https://github.com/pywbem/pywbem/actions/runs/9377087850/job/25818072248#step:11:108
It also does not strip blanks:
Upvote & Fund
The text was updated successfully, but these errors were encountered: