mirror of
https://github.com/SWGEvolve/SWGSourceLauncher.git
synced 2026-01-17 02:04:32 -05:00
12 lines
367 B
Batchfile
12 lines
367 B
Batchfile
@ECHO OFF
|
|
IF EXIST .\.git\ (
|
|
ECHO Looking for updates...
|
|
.\PortableGit\bin\git.exe pull
|
|
) ELSE (
|
|
ECHO New Client Detected! Initializing...
|
|
.\PortableGit\bin\git.exe init .
|
|
.\PortableGit\bin\git.exe config pull.rebase false
|
|
.\PortableGit\bin\git.exe remote add -f origin https://github.com/SWG-Source/client-assets.git
|
|
.\PortableGit\bin\git.exe checkout master
|
|
)
|
|
PAUSE |