From 492bb3ec2d1f706a9e6546fe756e05e1efdfab93 Mon Sep 17 00:00:00 2001 From: Tyler Watson Date: Sun, 14 May 2017 21:08:57 +1000 Subject: [PATCH] create_release script now compatible with mono 5 --- scripts/create_release.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/create_release.py b/scripts/create_release.py index 3d86912d..3a25f76d 100755 --- a/scripts/create_release.py +++ b/scripts/create_release.py @@ -36,7 +36,7 @@ sqlite_bin_name = "Mono.Data.Sqlite.dll" json_bin_name = "Newtonsoft.Json.dll" http_bin_name = "HttpServer.dll" tshock_bin_name = "TShockAPI.dll" -tshock_symbols = "TShockAPI.dll.mdb" +tshock_symbols = "TShockAPI.pdb" bcrypt_bin_name = "BCrypt.Net.dll" geoip_db_name = "GeoIP.dat" @@ -140,6 +140,7 @@ def upload_artifacts(): def update_terraria_source(): subprocess.check_call(['/usr/bin/git', 'submodule', 'init']) subprocess.check_call(['/usr/bin/git', 'submodule', 'update']) + subprocess.check_call(['nuget', 'restore']) subprocess.check_call(['nuget', 'restore', 'TerrariaServerAPI/']) def run_bootstrapper():