Files
2025-09-29 00:52:08 +02:00

41 lines
984 B
Batchfile
Executable File

::************************************************
:: GTA5 Symbol Backup batch file **
:: Updated: 04/03/2013 **
:: Last edited by: Ross McKinstray **
:: Last edits: Raring the symbols **
::************************************************
@echo off
echo.
cd /d %~dp0
set copydir=N:\RSGEDI\Distribution\QA_Build\gta5
set builddir=X:\gta5\build\dev
set path="C:\Program Files (x86)\WinRAR\";%path%
set ver=NUL
FOR /F "eol=# skip=3" %%G IN (%builddir%\common\data\version.txt) DO (
set ver=%%G
GOTO PRINT
)
:PRINT
echo version=%ver%
GOTO MAIN
:MAIN
if exist %copydir%\PS3_Symbols\Version%ver% (
echo This version folder already exists, please manually back up these symbols!
) ELSE (
echo Copying symbols to the network
mkdir "%copydir%/PS3_Symbols/Version%ver%"
rar a %copydir%/PS3_Symbols/Version%ver%/symbols.rar c:\spu_debug\*.elf
rar a %copydir%/PS3_Symbols/Version%ver%/symbols.rar %builddir%\*.self
)
pause