mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 19:21:06 +00:00
12 lines
420 B
PowerShell
12 lines
420 B
PowerShell
|
$ErrorActionPreference = 'Continue'
|
||
|
# Perform a sysupgrade on MSYS2, otherwise it will do the upgrade at a later stage
|
||
|
while (1) {
|
||
|
C:\msys64\msys2_shell.cmd -ucrt64 -defterm -here -no-start -use-full-path -lc 'pacman -Syuu --noconfirm'
|
||
|
if (!$?) {
|
||
|
Write-Host "System upgrade needed to kill MSYS2 processes or something, running it again..."
|
||
|
continue
|
||
|
}
|
||
|
Write-Host "MSYS2 system upgrade complete"
|
||
|
break
|
||
|
}
|