This repository has been archived on 2023-05-22. You can view files and clone it, but cannot push or open issues/pull-requests.
fvtt-shared-compendia/scripts/update-module.ps1

23 lines
561 B
PowerShell
Raw Normal View History

2023-05-16 21:38:07 +00:00
Import-Module ./update-archive.psm1
Import-Module ./update-db.psm1
#Скачивание обновлений БД мира
Write-Host -ForegroundColor Cyan -NoNewline "`nDownload DB updates?(y/n): "
$answerDbUpd = Read-Host
if ($answerDbUpd -eq "y"){
update-db
}
elseif ($answerDbUpd -eq "n") {
Write-Host "Skipping DB updates`n"
}
#Обновить модуль
Write-Host -ForegroundColor Cyan -NoNewline "`nUpdate archive?(y/n): "
$answerArchUpd = Read-Host
if ($answerArchUpd -eq "y"){
update-archive
}
elseif ($answerArchUpd -eq "n") {
break
}