Skip to content

Commit

Permalink
fixed Iriusrisk Mapping File is specified with -gmf so the Reference …
Browse files Browse the repository at this point in the history
…Mapping File is then required to be specified with -rmf
  • Loading branch information
alexgmuir committed Apr 1, 2021
1 parent df21b2e commit 7776767
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,10 @@ void createCommand(@CommandLine.Option(names = {"-n"}, paramLabel = "<product na
cfImport.setGraphWidth(Integer.parseInt(graphWidth));
}

if (generatedMapping != null && !generatedMapping.isEmpty() && (reference == null || (reference != null && !reference.isEmpty()))) {
System.out.println("Iriusrisk Mapping File is specified with -gmf so the Reference Mapping File is then required to be specified with -rmf");
if (generatedMapping != null && !generatedMapping.isEmpty() &&
(reference == null || (reference != null && reference.isEmpty()))) {
System.out.println("Iriusrisk Generated Mapping File is specified with -gmf so"
+ " the Reference Mapping File is then required to be specified with -rmf");
System.exit(0);
}

Expand Down

0 comments on commit 7776767

Please sign in to comment.