Also check if project data exists before deciding to unpack
This commit is contained in:
parent
b91a3b5eae
commit
970c3911cb
1 changed files with 2 additions and 2 deletions
|
|
@ -79,8 +79,8 @@ if exist "%ROOT_DIR%\data.dts" (
|
|||
if exist "%UNPACKER%" (
|
||||
echo [Pre-Setup] Running SRPG_Unpacker preparation steps...
|
||||
|
||||
REM Step 1: Unpack (once)
|
||||
if not exist "%ROOT_DIR%\data\" (
|
||||
REM Step 1: Unpack (once)
|
||||
if not exist "%ROOT_DIR%\data\" if exist "%ROOT_DIR%\data\project.dat" (
|
||||
if exist "%ROOT_DIR%\data.dts" (
|
||||
echo [Pre-Setup] Step 1: Unpacking data.dts to data
|
||||
pushd "%ROOT_DIR%"
|
||||
|
|
|
|||
Loading…
Reference in a new issue