Skip to content

Commit 8bb7a22

Browse files
committed
builder: Fix temp file path
Signed-off-by: Ajay Bhargav <[email protected]>
1 parent 3398114 commit 8bb7a22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builder/framework/siwisdk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def gen_bin_file(target, source, env):
3939
(target_firm, ) = target
4040
(target_elf, ) = source
4141

42-
temp_firm = os.path.dirname(target_firm.get_abspath()) + "\\temp.bin"
42+
temp_firm = os.path.dirname(target_firm.get_abspath()) + "/temp.bin"
4343
cmd.extend(["-O", "binary"])
4444
cmd.append(target_elf.get_abspath())
4545
cmd.append(temp_firm)

0 commit comments

Comments
 (0)