Skip to content

Commit a042e35

Browse files
committed
Critical bug: mistake in expfile generation logic
1 parent 9ef572a commit a042e35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

task/src/main/java/pro/javacard/ant/JCCap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ private void convert(Path applet_folder, List<Path> exps) {
575575

576576
// determine output types
577577
String outputs = "CAP";
578-
if (output_exp != null || (raw_applets.size() > 1 && verify)) {
578+
if (output_exp != null || (raw_applets.size() > 0 && verify)) {
579579
outputs += " EXP";
580580
}
581581
if (output_jca != null) {

0 commit comments

Comments
 (0)