Skip to content

Commit 1d0d38a

Browse files
committed
Needed to fix null issue in JFrog artifactory
1 parent 04f6fa5 commit 1d0d38a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/checkmarx/ast/wrapper/CxConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ List<String> toArguments() {
5757
commands.add(CxConstants.BASE_AUTH_URI);
5858
commands.add(getBaseAuthUri());
5959
}
60-
61-
commands.addAll(getAdditionalParameters());
60+
if (getAdditionalParameters() != null)
61+
commands.addAll(getAdditionalParameters());
6262

6363
return commands;
6464
}

0 commit comments

Comments
 (0)