jhj0517
Rename file
426147f
raw
history blame contribute delete
270 Bytes
try {
git pull origin master 2>$null
if ($LASTEXITCODE -eq 0) {
Write-Output "Successfully updated WebUI."
} else {
throw
}
} catch {
git reset --hard
git pull origin master
Write-Output "Successfully updated WebUI."
}
pause