Skip to content

Commit 0f26bf0

Browse files
committed
build windows script fix
1 parent ea1bbed commit 0f26bf0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

scripts/build_app.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@ def build_windows(
7676
else:
7777
pyinstaller_options += ["--onedir"]
7878

79+
# on Windows the separator is a semicolon
80+
added_data_options = [option.replace(":", ";") for option in added_data_options]
81+
7982
options = pyinstaller_options + added_data_options
8083

8184
logger.info(f"calling pyinstaller with options: {' '.join(options)}")

0 commit comments

Comments
 (0)