fix build batch files to point to output folder instead of output64

This commit is contained in:
adelikat 2017-06-12 17:39:52 -05:00
parent 19883585c6
commit f6f8a5571c
2 changed files with 6 additions and 6 deletions

View File

@ -23,7 +23,7 @@ call "%MSBUILDDIR%msbuild.exe" ..\BizHawk.sln /p:Configuration=Release /p:Platfo
rmdir /s /q temp
del /s %NAME%
cd ..\output64
cd ..\output
rem slimdx has a way of not making it into the output directory, so this is a good time to make sure
copy ..\..\SlimDx.dll
@ -46,12 +46,12 @@ rmdir /s /q temp\lua
rmdir /s /q temp\firmware
rmdir /s /q gitsucks
git --git-dir ../.git archive --format zip --output64 lua.zip HEAD Assets/Lua
git --git-dir ../.git archive --format zip --output64 firmware.zip HEAD output64/Firmware
git --git-dir ../.git archive --format zip --output lua.zip HEAD Assets/Lua
git --git-dir ../.git archive --format zip --output firmware.zip HEAD output/Firmware
rem Getting externaltools example from my repo
rem I once talked about a dedicated repo for external tools, think about moving the exemple to it it it happend
git clone https://github.com/Hathor86/HelloWorld_BizHawkTool.git
git --git-dir HelloWorld_BizHawkTool/.git archive --format zip --output64 HelloWorld_BizHawkTool.zip master
git --git-dir HelloWorld_BizHawkTool/.git archive --format zip --output HelloWorld_BizHawkTool.zip master
rmdir /s /q HelloWorld_BizHawkTool
unzip lua.zip -d gitsucks
@ -59,7 +59,7 @@ rem del lua.zip
move gitsucks\Assets\Lua temp
unzip Firmware.zip -d gitsucks
rem del firmware.zip
move gitsucks\output64\Firmware temp
move gitsucks\output\Firmware temp
rmdir /s /q gitsucks

View File

@ -1,6 +1,6 @@
pushd %~dp0\
del /s DiscoHawk.zip
set DIR=..\output64
set DIR=..\output
set BUILDDIR=%~dp0
echo %BUILDIR%
cd "%DIR%"