Skip to content
Open
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
4 changes: 2 additions & 2 deletions src/main/java/com/fortify/fod/parser/FortifyCommands.java
Original file line number Diff line number Diff line change
Expand Up @@ -180,14 +180,14 @@ public boolean hasUserCredentials() {
private static final String TENANT_CODE = "-tenantCode";
private static final String TENANT_CODE_SHORT = "-tc";
@Parameter(names = {TENANT_CODE,TENANT_CODE_SHORT},
description = "Tenant identifier",
description = "Tenant identifier ",
required = false)
public String tenantCode;

private static final String IS_POLICY_FAILURE = "-allowPolicyFail";
private static final String IS_POLICY_FAILURE_SHORT = "-apf";
@Parameter(names = {IS_POLICY_FAILURE, IS_POLICY_FAILURE_SHORT },
description = "Flag allows to exit with 0 code even if policy fails")
description = "whether the scan is a bundled assessment")
public boolean allowPolicyFail = false;

public void version() {
Expand Down