Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Auto Package:
- cd $(basename -s .git ${CLONE_URL})
- cd ../../
- |
if [ "$DEBUG" = "true" ]; then
if [ "$ENABLE_DEBUG" = "true" ]; then
${CLI_FOLDER}/veracode package --source clonePath/* --output "$ARTIFACTS_FOLDER" --trust --verbose
else
${CLI_FOLDER}/veracode package --source clonePath/* --output "$ARTIFACTS_FOLDER" --trust
Expand Down
2 changes: 1 addition & 1 deletion veracodeScan.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ async function veracodeScan() {
const breakBuildOnInvalidPolicy = process.env.BREAK_BUILD_ON_INVALID_POLICY || false;

const repoUrl = process.env.PROJECT_URL;
const debug = process.env.DEBUG;
const debug = process.env.ENABLE_DEBUG;

if (executePipeline) {
console.log(`Executing pipeline scan on ${projectName} repo for ${sourceBranch} branch`);
Expand Down