Skip to content
This repository has been archived by the owner on Mar 22, 2024. It is now read-only.

Commit

Permalink
fix: Insert env at the correct place
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Dombeck committed Jun 7, 2021
1 parent 7ba28de commit f641000
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ pipeline {
CI_FUZZ_API_TOKEN = credentials('CI_FUZZ_API_TOKEN')
CICTL = "${WORKSPACE}/cictl-%{CICTL_VERSION}-linux";
CICTL_VERSION = '%{CICTL_VERSION}';
env
CICTL_SHA256SUM = '1638c7426af10dccc60da00fa70c6c42fb7b8cea59ee926a64568784b61926d3';
CICTL_URL = 'https://s3.eu-central-1.amazonaws.com/public.code-intelligence.com/cictl/cictl-%{CICTL_VERSION}-linux';
FINDINGS_TYPE = 'CRASH';
Expand All @@ -28,6 +27,8 @@ pipeline {
sh '''
set -eu
env
# Download cictl if it doesn't exist already
if [ ! -f "${CICTL}" ]; then
curl "${CICTL_URL}" -o "${CICTL}"
Expand Down

0 comments on commit f641000

Please sign in to comment.