We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea1bbed commit 0f26bf0Copy full SHA for 0f26bf0
scripts/build_app.py
@@ -76,6 +76,9 @@ def build_windows(
76
else:
77
pyinstaller_options += ["--onedir"]
78
79
+ # on Windows the separator is a semicolon
80
+ added_data_options = [option.replace(":", ";") for option in added_data_options]
81
+
82
options = pyinstaller_options + added_data_options
83
84
logger.info(f"calling pyinstaller with options: {' '.join(options)}")
0 commit comments