Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Another temporary directory naming fix.
  • Loading branch information
freakboy3742 committed Apr 9, 2026
commit e1afb8c8bf1c6091f7aac8a363ee5ea0d8bf54fe
2 changes: 1 addition & 1 deletion Platforms/Android/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,7 @@ def ci(context):
"emulator on this platform."
)
else:
with TemporaryDirectory(prefix=SCRIPT_NAME) as temp_dir:
with TemporaryDirectory(prefix=SCRIPT_NAME.replace("/", "-")) as temp_dir:
print("::group::Tests")

# Prove the package is self-contained by using it to run the tests.
Expand Down
Loading