Skip to content

Commit e1afb8c

Browse files
committed
Another temporary directory naming fix.
1 parent 84f0256 commit e1afb8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Platforms/Android/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -844,7 +844,7 @@ def ci(context):
844844
"emulator on this platform."
845845
)
846846
else:
847-
with TemporaryDirectory(prefix=SCRIPT_NAME) as temp_dir:
847+
with TemporaryDirectory(prefix=SCRIPT_NAME.replace("/", "-")) as temp_dir:
848848
print("::group::Tests")
849849

850850
# Prove the package is self-contained by using it to run the tests.

0 commit comments

Comments
 (0)