1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-14 22:42:34 +02:00

Fix join of arguments being to early

This commit is contained in:
Elias Steurer 2021-05-16 16:38:04 +02:00
parent 1bb3cd36b0
commit 4001d1ddd2

View File

@ -42,7 +42,6 @@ if __name__ == "__main__":
"benchmark",
]
vcpkg_packages = " ".join(vcpkg_packages_list)
vcpkg_triplet = ""
executable_file_suffix = ""
@ -63,6 +62,7 @@ if __name__ == "__main__":
execute("chmod +x vcpkg", vcpkg_path)
vcpkg_triplet = "x64-osx"
vcpkg_packages = " ".join(vcpkg_packages_list)
execute("vcpkg{} update".format(executable_file_suffix), vcpkg_path, False)
execute("vcpkg{} upgrade --no-dry-run".format(executable_file_suffix),
vcpkg_path, False)