From 967c24211f3a5aa209735764c162e839a4df0dc2 Mon Sep 17 00:00:00 2001 From: Lucas Nicodemus Date: Thu, 26 May 2016 22:46:01 -0600 Subject: [PATCH] Try to run nuget restore in release script --- scripts/create_release.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/create_release.py b/scripts/create_release.py index 7f73e815..41fa53cd 100644 --- a/scripts/create_release.py +++ b/scripts/create_release.py @@ -98,6 +98,7 @@ def delete_files(): def update_terraria_source(): subprocess.check_call(['/usr/bin/git', 'submodule', 'init']) subprocess.check_call(['/usr/bin/git', 'submodule', 'update']) + subprocess.check_call(['/usr/bin/mono', '/opt/nuget/nuget.exe', 'restore']) def build_software(): release_proc = subprocess.Popen(['/usr/local/bin/xbuild', './TShockAPI/TShockAPI.csproj', '/p:Configuration=Release'])