Fix Jenkins.

This commit is contained in:
Pieter-Jan Briers
2019-04-17 23:34:57 +02:00
parent 747cb15888
commit 0598578ed9

View File

@@ -96,7 +96,7 @@ def build_windows():
# Run a full build. # Run a full build.
print(Fore.GREEN + "Building project for Windows x64..." + Style.RESET_ALL) print(Fore.GREEN + "Building project for Windows x64..." + Style.RESET_ALL)
subprocess.run(["msbuild", subprocess.run(["msbuild",
"SpaceStation14Content.sln", "SpaceStation14.sln",
"/m", "/m",
"/p:Configuration=Release", "/p:Configuration=Release",
"/p:Platform=x64", "/p:Platform=x64",
@@ -130,7 +130,7 @@ def build_windows():
def build_macos(): def build_macos():
print(Fore.GREEN + "Building project for macOS x64..." + Style.RESET_ALL) print(Fore.GREEN + "Building project for macOS x64..." + Style.RESET_ALL)
subprocess.run(["msbuild", subprocess.run(["msbuild",
"SpaceStation14Content.sln", "SpaceStation14.sln",
"/m", "/m",
"/p:Configuration=Release", "/p:Configuration=Release",
"/p:Platform=x64", "/p:Platform=x64",
@@ -166,7 +166,7 @@ def build_linux():
# Run a full build. # Run a full build.
print(Fore.GREEN + "Building project for Linux x64..." + Style.RESET_ALL) print(Fore.GREEN + "Building project for Linux x64..." + Style.RESET_ALL)
subprocess.run(["msbuild", subprocess.run(["msbuild",
"SpaceStation14Content.sln", "SpaceStation14.sln",
"/m", "/m",
"/p:Configuration=Release", "/p:Configuration=Release",
"/p:Platform=x64", "/p:Platform=x64",