We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54f3770 commit c314a3dCopy full SHA for c314a3d
scripts/runSemgrep.sh
@@ -6,8 +6,10 @@ source scripts/requireCommand.sh
6
7
requireCommand docker
8
9
+docker pull returntocorp/semgrep
10
+
11
benchmark_version=$(scripts/getBenchmarkVersion.sh)
-semgrep_version=$(docker run --rm returntocorp/semgrep --version)
12
+semgrep_version=$(docker run --rm returntocorp/semgrep semgrep --version)
13
result_file="/src/results/Benchmark_$benchmark_version-Semgrep-v$semgrep_version.json"
14
-docker run --rm -v "${PWD}:/src" returntocorp/semgrep --config p/security-audit -q --json -o "$result_file" . > /dev/null
15
+docker run --rm -v "${PWD}:/src" returntocorp/semgrep semgrep --config p/security-audit -q --json -o "$result_file" . > /dev/null
0 commit comments