first commit
This commit is contained in:
Vendored
+24
@@ -0,0 +1,24 @@
|
||||
@echo OFF
|
||||
:: This batch file exists to run updater.ps1 without hassle
|
||||
pushd %~dp0
|
||||
if exist "%~dp0\installer\updater.ps1" (
|
||||
set updater_script="%~dp0\installer\updater.ps1"
|
||||
) else (
|
||||
set updater_script="%~dp0\updater.ps1"
|
||||
)
|
||||
|
||||
:: Check if pwsh is in the system's PATH
|
||||
where pwsh >nul 2>nul
|
||||
if %errorlevel% equ 0 (
|
||||
:: pwsh is in PATH, so run the script using Windows Powershell
|
||||
pwsh -NoProfile -NoLogo -ExecutionPolicy Bypass -File %updater_script%
|
||||
) else (
|
||||
:: pwsh is not in PATH, run the script using PowerShell Core
|
||||
powershell -NoProfile -NoLogo -ExecutionPolicy Bypass -File %updater_script%
|
||||
)
|
||||
|
||||
:: After update, updater.ps1 should not in same folder as mpv.exe
|
||||
if exist "%~dp0\installer\updater.ps1" if exist "%~dp0\updater.ps1" (
|
||||
del "%~dp0\updater.ps1"
|
||||
)
|
||||
timeout 5
|
||||
Reference in New Issue
Block a user