From 26054fd8018f8a5f77952c548823accc29b76fe9 Mon Sep 17 00:00:00 2001 From: The Dax Date: Tue, 29 Apr 2014 13:53:42 -0400 Subject: [PATCH] Add bin-release to the gitignore file. Fixes an issue with TortoiseGit on Windows relating to that directory. More specifically: It doesn't like bin-release\lang\.git, but it doesn't need to concern itself with bin-release\* at all. --- .gitignore | 1 + Windows/build-x64.cmd | 2 +- Windows/build-x86.cmd | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 213b07be7..248c7a771 100644 --- a/.gitignore +++ b/.gitignore @@ -23,6 +23,7 @@ Debug Release Windows/x64 Windows/ipch +Windows/bin-release ui_atlas.zim.png android/assets # For Mac diff --git a/Windows/build-x64.cmd b/Windows/build-x64.cmd index 20131318a..8a878c4f9 100644 --- a/Windows/build-x64.cmd +++ b/Windows/build-x64.cmd @@ -39,7 +39,7 @@ if not exist %PPSSPP_ROOT%\%RELEASEX64% ( ) call msbuild PPSSPP.sln /t:Clean %DBG_PPSSPP% /m call msbuild PPSSPP.sln /t:Build %DBG_PPSSPP% /m -if not exist %PPSSPP_ROOT%\%RELEASEX64% ( +if not exist %PPSSPP_ROOT%\%DEBUGX64% ( echo Debug build failed. goto Quit ) diff --git a/Windows/build-x86.cmd b/Windows/build-x86.cmd index fe6db682c..895ab1a45 100644 --- a/Windows/build-x86.cmd +++ b/Windows/build-x86.cmd @@ -39,7 +39,7 @@ if not exist %PPSSPP_ROOT%\%RELEASEX86% ( ) call msbuild PPSSPP.sln /t:Clean %DBG_PPSSPP% /m call msbuild PPSSPP.sln /t:Build %DBG_PPSSPP% /m -if not exist %PPSSPP_ROOT%\%RELEASEX86% ( +if not exist %PPSSPP_ROOT%\%DEBUGX86% ( echo Debug build failed. goto Quit )