Try to run nuget restore in release script

This commit is contained in:
Lucas Nicodemus 2016-05-26 22:46:01 -06:00
parent 86e741a3cd
commit 967c24211f

View file

@ -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'])