Skip to content

Commit

Permalink
Merge pull request #170 from CheckmarxDev/feature-change-authenticati…
Browse files Browse the repository at this point in the history
…on-screen

Change authentication screen
  • Loading branch information
hmmachadocx authored Sep 29, 2022
2 parents 17d7327 + b173baa commit bc7801a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main/java/com/checkmarx/ast/wrapper/CxConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,10 @@ List<String> toArguments() {
commands.add(getTenant());
}

commands.add(CxConstants.BASE_URI);
commands.add(getBaseUri());
if (StringUtils.isNotBlank(getBaseUri())) {
commands.add(CxConstants.BASE_URI);
commands.add(getBaseUri());
}

if (StringUtils.isNotBlank(getBaseAuthUri())) {
commands.add(CxConstants.BASE_AUTH_URI);
Expand Down

0 comments on commit bc7801a

Please sign in to comment.