Skip to content

Commit

Permalink
don't prompt for xcopy
Browse files Browse the repository at this point in the history
don't ask whether to override files when copying them for packaging
  • Loading branch information
Bigpet committed Jul 4, 2014
1 parent c5e780f commit 061fe50
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.bat
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ copy bin\soft-oal.dll build\rpcs3
copy bin\make_fself.cmd build\rpcs3

mkdir build\rpcs3\dev_hdd1
xcopy /e bin\dev_hdd1 build\rpcs3\dev_hdd1
xcopy /Y /e bin\dev_hdd1 build\rpcs3\dev_hdd1

mkdir build\rpcs3\dev_hdd0
xcopy /e bin\dev_hdd0 build\rpcs3\dev_hdd0
xcopy /Y /e bin\dev_hdd0 build\rpcs3\dev_hdd0

mkdir build\rpcs3\dev_flash
xcopy /e bin\dev_flash build\rpcs3\dev_flash
xcopy /Y /e bin\dev_flash build\rpcs3\dev_flash

mkdir build\rpcs3\dev_usb000
xcopy /e bin\dev_usb000 build\rpcs3\dev_usb000
xcopy /Y /e bin\dev_usb000 build\rpcs3\dev_usb000

for /f "delims=" %%a in ('git describe') do @set gitrev=%%a

cd build
7z a -mx9 ..\rpcs3-%gitrev%-windows-x86_64.7z rpcs3
cd ..
cd ..

0 comments on commit 061fe50

Please sign in to comment.