Skip to content
Snippets Groups Projects
Commit 485e2c67 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

try not to fail because vulnix finds vulnerabilities

parent 183f9844
No related branches found
No related tags found
No related merge requests found
...@@ -30,4 +30,6 @@ else ...@@ -30,4 +30,6 @@ else
fi fi
' '
nix-shell -p vulnix --run 'vulnix ./scan-target/' | tee "$OUTPUT" # vulnix exits with an error status if there are vulnerabilities. we don't
# want to fail the job in that case because then we can't see the report.
nix-shell -p vulnix --run 'vulnix ./scan-target/ || true' | tee "$OUTPUT"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment