Skip to content

Commit b1f4ec2

Browse files
author
jantje
committed
#1219 rework made .exe target project fail
1 parent 27b28c9 commit b1f4ec2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

io.sloeber.tests/src/io/sloeber/core/Shared.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public static boolean hasBuildErrors(IProject project) throws CoreException {
6262
}
6363
IPath resultPath = project.getLocation().append("Release");
6464
String projName=project.getName() ;
65-
String[] validOutputss= {projName+".elf",projName+".bin",projName+".hex",".exe","application.axf"};
65+
String[] validOutputss= {projName+".elf",projName+".bin",projName+".hex",projName+".exe","application.axf"};
6666
for(String validOutput:validOutputss) {
6767
File validFile = resultPath.append( validOutput).toFile();
6868
if (validFile.exists()) {

0 commit comments

Comments
 (0)