From 60d866ba2f805c588d0945529b5319713b6154bb Mon Sep 17 00:00:00 2001 From: Zack Piispanen Date: Sat, 12 Oct 2013 03:05:08 -0400 Subject: [PATCH] Another fix --- create_release.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/create_release.py b/create_release.py index 4311fcca..03b7d6d9 100644 --- a/create_release.py +++ b/create_release.py @@ -90,8 +90,8 @@ def update_terraria_exe(): os.remove(terraria_bin_name) def build_software(): - subprocess.call(['/usr/local/bin/xbuild'], ['./TShockAPI/TShockAPI.csproj'], ['/p:Configuration=Release']) - subprocess.call(['/usr/local/bin/xbuild'], ['./TShockAPI/TShockAPI.csproj'], ['/p:Configuration=Debug']) + subprocess.call(['/usr/local/bin/xbuild', './TShockAPI/TShockAPI.csproj', '/p:Configuration=Release']) + subprocess.call(['/usr/local/bin/xbuild', './TShockAPI/TShockAPI.csproj', '/p:Configuration=Debug']) if __name__ == '__main__': create_release_folder()