1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-05-26 22:27:12 +08:00

Revert "Merge branch 'dev' of https://github.com/LmeSzinc/AzurLaneAutoScript into dev"

This reverts commit bdc5aa0720, reversing
changes made to 6ee7a62edf.
This commit is contained in:
whoamikyo
2020-08-18 20:47:27 -03:00
parent bdc5aa0720
commit ac9303012c
741 changed files with 8380 additions and 18943 deletions

23
updater.bat Normal file
View File

@@ -0,0 +1,23 @@
@ECHO off
set PATH=%PATH%;%PROGRAMFILES%\Git\cmd
cls
:start
ECHO.
ECHO 1. https://github.com/LmeSzinc/AzurLaneAutoScript
ECHO 2. https://github.com/whoamikyo/AzurLaneAutoScript
set choice=
set /p choice=Choose the repository you want to use.
if not '%choice%'=='' set choice=%choice:~0,1%
if '%choice%'=='1' goto LmeSzinc
if '%choice%'=='2' goto whoamikyo
ECHO "%choice%" is not valid, try again
ECHO.
goto start
:LmeSzinc
git pull https://github.com/LmeSzinc/AzurLaneAutoScript.git
goto end
:whoamikyo
git pull https://github.com/whoamikyo/AzurLaneAutoScript.git
goto end
:end
pause