scripts: Fix artifact list on Windows
Regressed in c2210539a9e2be1deacf8df8f432e035d9b9b9f0: We don't want to return a list of lists.
This commit is contained in:
parent
66f654b95c
commit
680a941e64
|
|
@ -400,13 +400,11 @@ def build_windows(
|
|||
utils.print_title("Updating VersionInfo file")
|
||||
gen_versioninfo.main()
|
||||
|
||||
artifacts = [
|
||||
_build_windows_single(
|
||||
skip_packaging=skip_packaging,
|
||||
debug=debug,
|
||||
qt5=qt5,
|
||||
),
|
||||
]
|
||||
artifacts = _build_windows_single(
|
||||
skip_packaging=skip_packaging,
|
||||
debug=debug,
|
||||
qt5=qt5,
|
||||
)
|
||||
return artifacts
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue