Remove nuget folders first

This commit is contained in:
Lucas Nicodemus 2016-05-26 22:52:05 -06:00
parent 967c24211f
commit 825c3bc322

View file

@ -98,6 +98,8 @@ def delete_files():
def update_terraria_source(): def update_terraria_source():
subprocess.check_call(['/usr/bin/git', 'submodule', 'init']) subprocess.check_call(['/usr/bin/git', 'submodule', 'init'])
subprocess.check_call(['/usr/bin/git', 'submodule', 'update']) subprocess.check_call(['/usr/bin/git', 'submodule', 'update'])
subprocess.check_call(['/usr/bin/rm', '-rf', '/tmp/NuGet/'])
subprocess.check_call(['/usr/bin/rm', '-rf', '/tmp/NuGetScratch'])
subprocess.check_call(['/usr/bin/mono', '/opt/nuget/nuget.exe', 'restore']) subprocess.check_call(['/usr/bin/mono', '/opt/nuget/nuget.exe', 'restore'])
def build_software(): def build_software():