From a251a21fef5ab6140347f2492405a5855a6e19b6 Mon Sep 17 00:00:00 2001 From: Tyler Watson Date: Mon, 24 Apr 2017 00:32:18 +1000 Subject: [PATCH] Update release to include UnicodeInput modification --- scripts/create_release.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/create_release.py b/scripts/create_release.py index 94c85cb0..be6efb41 100755 --- a/scripts/create_release.py +++ b/scripts/create_release.py @@ -148,11 +148,13 @@ def run_bootstrapper(): mod_clientuuid_proc = subprocess.Popen(['xbuild', './TerrariaServerAPI/TShock.Modifications.ClientUUID/TShock.Modifications.ClientUUID.csproj', '/p:Configuration=' + build_config]) mod_explosives_proc = subprocess.Popen(['xbuild', './TerrariaServerAPI/TShock.Modifications.Explosives/TShock.Modifications.Explosives.csproj', '/p:Configuration=' + build_config]) mod_ssc_proc = subprocess.Popen(['xbuild', './TerrariaServerAPI/TShock.Modifications.SSC/TShock.Modifications.SSC.csproj', '/p:Configuration=' + build_config]) + mod_utf8_proc = subprocess.Popen(['xbuild', './TerrariaServerAPI/TShock.Modifications.UnicodeInput/TShock.Modifications.UnicodeInput.csproj', '/p:Configuration=' + build_config]) mod_bootstrapper_proc.wait() mod_clientuuid_proc.wait() mod_explosives_proc.wait() mod_ssc_proc.wait() + mod_utf8_proc.wait() if (mod_bootstrapper_proc.returncode != 0): raise CalledProcessError(mod_bootstrapper_proc.returncode)