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
When using GitLab CI, the base step_script requires grep to validate the following condition:
step_script
if set -o | grep pipefail > /dev/null; then set -o pipefail; fi; set -o errexit
It fails when using the Makes contianer with:
/scripts-20741933-3770428206/step_script: line 13: grep: command not found
Let's add grep to the container as it is a basic utility.
The text was updated successfully, but these errors were encountered:
Merge pull request #1004 from dsalaza4/main
dcfa9a5
feat(build): #1003 add grep to container
6a53a01
Merge pull request fluidattacks#1004 from dsalaza4/main
3f5af36
feat(build): fluidattacks#1003 add grep to container
dsalaza4
No branches or pull requests
When using GitLab CI, the base
step_script
requires grep to validate the following condition:if set -o | grep pipefail > /dev/null; then set -o pipefail; fi; set -o errexit
It fails when using the Makes contianer with:
/scripts-20741933-3770428206/step_script: line 13: grep: command not found
Let's add grep to the container as it is a basic utility.
The text was updated successfully, but these errors were encountered: