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.
This commit is contained in:
The Dax 2014-04-29 13:53:42 -04:00
parent 987b97125a
commit 26054fd801
3 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -23,6 +23,7 @@ Debug
Release
Windows/x64
Windows/ipch
Windows/bin-release
ui_atlas.zim.png
android/assets
# For Mac

View File

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

View File

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