Skip to content

Commit bc7801a

Browse files
Merge pull request #170 from CheckmarxDev/feature-change-authentication-screen
Change authentication screen
2 parents 17d7327 + b173baa commit bc7801a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,10 @@ List<String> toArguments() {
4848
commands.add(getTenant());
4949
}
5050

51-
commands.add(CxConstants.BASE_URI);
52-
commands.add(getBaseUri());
51+
if (StringUtils.isNotBlank(getBaseUri())) {
52+
commands.add(CxConstants.BASE_URI);
53+
commands.add(getBaseUri());
54+
}
5355

5456
if (StringUtils.isNotBlank(getBaseAuthUri())) {
5557
commands.add(CxConstants.BASE_AUTH_URI);

0 commit comments

Comments
 (0)