Skip to content

Commit 84f0256

Browse files
committed
Correct name of temp directory used during packaging.
1 parent 5335439 commit 84f0256

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
@@ -766,7 +766,7 @@ def package(context):
766766
prefix_dir = subdir(context.host, "prefix")
767767
version = package_version(prefix_dir)
768768

769-
with TemporaryDirectory(prefix=SCRIPT_NAME) as temp_dir:
769+
with TemporaryDirectory(prefix=SCRIPT_NAME.replace("/", "-")) as temp_dir:
770770
temp_dir = Path(temp_dir)
771771

772772
# Include all tracked files from the Android directory.

0 commit comments

Comments
 (0)