Copy Instead of Move.

This commit is contained in:
chase 2022-09-06 19:25:18 -05:00 committed by GitHub
parent f6a446d0be
commit a0f18168e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,9 +13,9 @@ md %temp%\Redist-Installer >nul 2>&1
if exist "7za.dll" (
if exist "7za.exe" (
if exist "redists.zip" (
move /Y 7za.dll %temp%\Redist-Installer >nul
move /Y 7za.exe %temp%\Redist-Installer >nul
move /Y redists.zip %temp%\Redist-Installer >nul
copy /Y 7za.dll %temp%\Redist-Installer >nul
copy /Y 7za.exe %temp%\Redist-Installer >nul
copy /Y redists.zip %temp%\Redist-Installer >nul
goto offlineInstall
)
)