Skip to content

Commit 861aff8

Browse files
authored
Fix error code on missing bin file for J-Link flash (#191)
***NO_CI***
1 parent afb59e2 commit 861aff8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nanoFirmwareFlasher.Library/JLinkCli.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public ExitCodes ExecuteFlashBinFiles(
120120
// check file existence
121121
if (files.Any(f => !File.Exists(f)))
122122
{
123-
return ExitCodes.E5003;
123+
return ExitCodes.E5004;
124124
}
125125

126126
// perform check on address(es)

0 commit comments

Comments
 (0)