mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 16:12:49 -05:00
downloadRunFile when updateself (#638)
* downloadRunFile when updateself * Download-Run-File when $updateself * Add updateconf function * Add --updaterun option * Typo * Typo
This commit is contained in:
@ -7,6 +7,7 @@ param (
|
||||
[switch] $rebuild,
|
||||
[switch] $updateconf,
|
||||
[switch] $updatedb,
|
||||
[switch] $updaterun,
|
||||
[switch] $updateself,
|
||||
[switch] $help,
|
||||
[string] $output = ""
|
||||
@ -60,6 +61,7 @@ Available commands:
|
||||
-stop
|
||||
-update
|
||||
-updatedb
|
||||
-updaterun
|
||||
-updateself
|
||||
-updateconf
|
||||
-rebuild
|
||||
@ -135,6 +137,10 @@ elseif ($stop) {
|
||||
Check-Output-Dir-Exists
|
||||
Invoke-Expression "& `"$scriptsDir\run.ps1`" -stop -outputDir `"$output`" -coreVersion $coreVersion -webVersion $webVersion"
|
||||
}
|
||||
elseif ($updaterun) {
|
||||
Check-Output-Dir-Exists
|
||||
Download-Run-File
|
||||
}
|
||||
elseif ($updateself) {
|
||||
Download-Self
|
||||
Write-Line "Updated self."
|
||||
|
Reference in New Issue
Block a user