Skip to content

Commit 360b7bb

Browse files
authored
Merge pull request #10443 from bridadan/fix_binary_notify
Fix for downloading the wrong binary in the online compiler
2 parents 47205bf + 03f5ffd commit 360b7bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/toolchains/mbed_toolchain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -766,7 +766,7 @@ def link_program(self, r, tmp_path, name):
766766
self.mem_stats(mapfile)
767767

768768
self.notify.var("compile_succeded", True)
769-
self.notify.var("binary", filename)
769+
self.notify.var("binary", full_path)
770770

771771
return full_path, updatable
772772

0 commit comments

Comments
 (0)