Skip to content

Commit fdfa2b0

Browse files
committed
rg_tool: Reverted relative path usage, it seems to break sometimes
1 parent 17f290c commit fdfa2b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rg_tool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def build_app(target, build_type=None, with_netplay=False, build_target=None):
166166

167167
try:
168168
print("\nPatching esp_image_header_t to skip sha256 on boot... ", end="")
169-
with open(os.path.join(target, "build", target + ".bin", "r+b")) as fp:
169+
with open(os.path.join(target, "build", target + ".bin"), "r+b") as fp:
170170
fp.seek(23)
171171
fp.write(b"\0")
172172
print("done!\n")

0 commit comments

Comments
 (0)