From c478a4306aeebcd39a2a9bc8f22ba5f9919071cb Mon Sep 17 00:00:00 2001 From: Bram Date: Wed, 25 Mar 2026 20:14:11 +0100 Subject: [PATCH] Revert "attempt to fix paths" This reverts commit 6d60a8663eaeff0ed1e96b97703a7cc48d01997c. --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8ce13d1..4b27479 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -33,7 +33,7 @@ pipeline { stage('SAST - Semgrep') { steps { sh """ - docker run --rm -v "$(pwd):/src" \ + docker run --rm -v "\$(pwd):/src" \ returntocorp/semgrep \ semgrep scan --config=auto \ --sarif --output /src/semgrep.sarif \ @@ -48,7 +48,7 @@ pipeline { curl -X POST "${DD_URL}/api/v2/import-scan/" \ -H "Authorization: Token ${DD_API_KEY}" \ -F "scan_type=SARIF" \ - -F "file=@$(pwd)/semgrep.sarif" \ + -F "file=@\$(pwd)/semgrep.sarif" \ -F "product_name=ReSendit" \ -F "engagement_name=Jenkins-CI" \ -F "auto_create_context=true" \