Skip to content

Commit

Permalink
Merge pull request #97 from SanojPunchihewa/bug-fixes
Browse files Browse the repository at this point in the history
Append folder path to event summary file in Demo mode
  • Loading branch information
SanojPunchihewa authored Dec 17, 2019
2 parents bf228b0 + e7c11ef commit 759725a
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,9 @@ private static void configureDemoArgsFilePath(Argument argument, String folder)
if (argument.getArgID().equals("F5C_ALIGN_OUTPUT_FILE")) {
argument.setArgValue(folder + "/f5c-event-alignment.txt");
}
if (argument.getArgID().equals("F5C_ALIGN_SUMMARY_OUTPUT_FILE")) {
argument.setArgValue(folder + "/event.summary.txt");
}
}

}

0 comments on commit 759725a

Please sign in to comment.