Skip to content

Commit

Permalink
Critical bug: mistake in expfile generation logic
Browse files Browse the repository at this point in the history
  • Loading branch information
martinpaljak committed Nov 19, 2024
1 parent 9ef572a commit a042e35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion task/src/main/java/pro/javacard/ant/JCCap.java
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ private void convert(Path applet_folder, List<Path> exps) {

// determine output types
String outputs = "CAP";
if (output_exp != null || (raw_applets.size() > 1 && verify)) {
if (output_exp != null || (raw_applets.size() > 0 && verify)) {
outputs += " EXP";
}
if (output_jca != null) {
Expand Down

0 comments on commit a042e35

Please sign in to comment.