installer updated, no longer uses bitsadmin
This commit is contained in:
parent
c4279d7f05
commit
ff243f4297
@ -75,13 +75,13 @@ IF EXIST "%root%NadekoBot\" (GOTO :backupinstall)
|
||||
IF %ERRORLEVEL% GEQ 8 (GOTO :copyerror)
|
||||
ECHO.
|
||||
ECHO bin folder copied...
|
||||
DEL "%root%NadekoBot_Old\src\NadekoBot\data\musicdata"
|
||||
RD /S /Q "%root%NadekoBot_Old\src\NadekoBot\data\musicdata"
|
||||
ECHO.
|
||||
ECHO music cache cleared...
|
||||
ROBOCOPY "%root%NadekoBot_Old\src\NadekoBot\data" "%installtemp%NadekoBot\src\NadekoBot\data" /E >nul 2>&1
|
||||
IF %ERRORLEVEL% GEQ 8 (GOTO :copyerror)
|
||||
ECHO.
|
||||
ECHO Old data folder copied to new folder
|
||||
ECHO Old data folder copied...
|
||||
::Moves the setup Nadeko folder
|
||||
RMDIR "%root%NadekoBot\" /S /Q >nul 2>&1
|
||||
ROBOCOPY "%root%NadekoInstall_Temp" "%rootdir%" /E /MOVE >nul 2>&1
|
||||
@ -129,12 +129,14 @@ timeout /t 5
|
||||
ECHO.
|
||||
ECHO Downloading libsodium.dll and opus.dll...
|
||||
SET "FILENAME=%~dp0\NadekoBot\src\NadekoBot\libsodium.dll"
|
||||
bitsadmin.exe /transfer "Downloading libsodium.dll" /priority high https://github.com/Kwoth/NadekoBot/raw/dev/src/NadekoBot/_libs/32/libsodium.dll "%FILENAME%"
|
||||
powershell -Command "Invoke-WebRequest https://github.com/Kwoth/NadekoBot/raw/dev/src/NadekoBot/_libs/32/libsodium.dll -OutFile %FILENAME%"
|
||||
::bitsadmin.exe /transfer "Downloading libsodium.dll" /priority high https://github.com/Kwoth/NadekoBot/raw/dev/src/NadekoBot/_libs/32/libsodium.dll "%FILENAME%"
|
||||
ECHO libsodium.dll downloaded.
|
||||
ECHO.
|
||||
timeout /t 5
|
||||
SET "FILENAME=%~dp0\NadekoBot\src\NadekoBot\opus.dll"
|
||||
bitsadmin.exe /transfer "Downloading opus.dll" /priority high https://github.com/Kwoth/NadekoBot/raw/dev/src/NadekoBot/_libs/32/opus.dll "%FILENAME%"
|
||||
powershell -Command "Invoke-WebRequest https://github.com/Kwoth/NadekoBot/raw/dev/src/NadekoBot/_libs/32/opus.dll -OutFile %FILENAME%"
|
||||
::bitsadmin.exe /transfer "Downloading opus.dll" /priority high https://github.com/Kwoth/NadekoBot/raw/dev/src/NadekoBot/_libs/32/opus.dll "%FILENAME%"
|
||||
ECHO opus.dll downloaded.
|
||||
GOTO end
|
||||
:end
|
||||
|
@ -25,13 +25,12 @@ IF ERRORLEVEL 1 GOTO latestar
|
||||
:latestar
|
||||
ECHO Auto Restart and Update with Dev Build (latest)
|
||||
ECHO Bot will auto update on every restart!
|
||||
timeout /t 3
|
||||
CD /D %~dp0NadekoBot\src\NadekoBot
|
||||
dotnet run --configuration Release
|
||||
ECHO Updating...
|
||||
timeout /t 3
|
||||
SET "FILENAME=%~dp0\Latest.bat"
|
||||
bitsadmin.exe /transfer "Downloading Nadeko (Latest)" /priority high https://github.com/Kwoth/NadekoBot/raw/master/scripts/Latest.bat "%FILENAME%"
|
||||
powershell -Command "Invoke-WebRequest https://github.com/Kwoth/NadekoBot/raw/master/scripts/Latest.bat -OutFile %FILENAME%"
|
||||
::bitsadmin.exe /transfer "Downloading Nadeko (Latest)" /priority high https://github.com/Kwoth/NadekoBot/raw/master/scripts/Latest.bat "%FILENAME%"
|
||||
ECHO NadekoBot Dev Build (latest) downloaded.
|
||||
SET root=%~dp0
|
||||
CD /D %root%
|
||||
@ -41,13 +40,12 @@ GOTO latestar
|
||||
:stablear
|
||||
ECHO Auto Restart and Update with Stable Build
|
||||
ECHO Bot will auto update on every restart!
|
||||
timeout /t 3
|
||||
CD /D %~dp0NadekoBot\src\NadekoBot
|
||||
dotnet run --configuration Release
|
||||
ECHO Updating...
|
||||
timeout /t 3
|
||||
SET "FILENAME=%~dp0\Stable.bat"
|
||||
bitsadmin.exe /transfer "Downloading Nadeko (Stable)" /priority high https://github.com/Kwoth/NadekoBot/raw/master/scripts/Stable.bat "%FILENAME%"
|
||||
powershell -Command "Invoke-WebRequest https://github.com/Kwoth/NadekoBot/raw/master/scripts/Stable.bat -OutFile %FILENAME%"
|
||||
::bitsadmin.exe /transfer "Downloading Nadeko (Stable)" /priority high https://github.com/Kwoth/NadekoBot/raw/master/scripts/Stable.bat "%FILENAME%"
|
||||
ECHO NadekoBot Stable build downloaded.
|
||||
SET root=%~dp0
|
||||
CD /D %root%
|
||||
|
@ -75,13 +75,13 @@ IF EXIST "%root%NadekoBot\" (GOTO :backupinstall)
|
||||
IF %ERRORLEVEL% GEQ 8 (GOTO :copyerror)
|
||||
ECHO.
|
||||
ECHO bin folder copied...
|
||||
DEL "%root%NadekoBot_Old\src\NadekoBot\data\musicdata"
|
||||
RD /S /Q "%root%NadekoBot_Old\src\NadekoBot\data\musicdata"
|
||||
ECHO.
|
||||
ECHO music cache cleared...
|
||||
ROBOCOPY "%root%NadekoBot_Old\src\NadekoBot\data" "%installtemp%NadekoBot\src\NadekoBot\data" /E >nul 2>&1
|
||||
IF %ERRORLEVEL% GEQ 8 (GOTO :copyerror)
|
||||
ECHO.
|
||||
ECHO Old data folder copied to new folder
|
||||
ECHO Old data folder copied...
|
||||
::Moves the setup Nadeko folder
|
||||
RMDIR "%root%NadekoBot\" /S /Q >nul 2>&1
|
||||
ROBOCOPY "%root%NadekoInstall_Temp" "%rootdir%" /E /MOVE >nul 2>&1
|
||||
@ -129,12 +129,14 @@ timeout /t 5
|
||||
ECHO.
|
||||
ECHO Downloading libsodium.dll and opus.dll...
|
||||
SET "FILENAME=%~dp0\NadekoBot\src\NadekoBot\libsodium.dll"
|
||||
bitsadmin.exe /transfer "Downloading libsodium.dll" /priority high https://github.com/Kwoth/NadekoBot/raw/dev/src/NadekoBot/_libs/32/libsodium.dll "%FILENAME%"
|
||||
powershell -Command "Invoke-WebRequest https://github.com/Kwoth/NadekoBot/raw/dev/src/NadekoBot/_libs/32/libsodium.dll -OutFile %FILENAME%"
|
||||
::bitsadmin.exe /transfer "Downloading libsodium.dll" /priority high https://github.com/Kwoth/NadekoBot/raw/dev/src/NadekoBot/_libs/32/libsodium.dll "%FILENAME%"
|
||||
ECHO libsodium.dll downloaded.
|
||||
ECHO.
|
||||
timeout /t 5
|
||||
SET "FILENAME=%~dp0\NadekoBot\src\NadekoBot\opus.dll"
|
||||
bitsadmin.exe /transfer "Downloading opus.dll" /priority high https://github.com/Kwoth/NadekoBot/raw/dev/src/NadekoBot/_libs/32/opus.dll "%FILENAME%"
|
||||
powershell -Command "Invoke-WebRequest https://github.com/Kwoth/NadekoBot/raw/dev/src/NadekoBot/_libs/32/opus.dll -OutFile %FILENAME%"
|
||||
::bitsadmin.exe /transfer "Downloading opus.dll" /priority high https://github.com/Kwoth/NadekoBot/raw/dev/src/NadekoBot/_libs/32/opus.dll "%FILENAME%"
|
||||
ECHO opus.dll downloaded.
|
||||
GOTO end
|
||||
:end
|
||||
|
Loading…
Reference in New Issue
Block a user