1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-02 08:32:50 -05:00

data dir doesnt need to exist to updateself

This commit is contained in:
Kyle Spearrin
2017-10-20 08:40:53 -04:00
parent 0e247b711d
commit 97bfa00657
2 changed files with 0 additions and 9 deletions

View File

@ -47,9 +47,6 @@ $githubBaseUrl = "https://raw.githubusercontent.com/bitwarden/core/master"
# Functions
function Download-Self {
if(!(Test-Path -Path $scriptsDir)) {
New-Item -ItemType directory -Path $scriptsDir | Out-Null
}
Invoke-RestMethod -OutFile $scriptPath -Uri "${githubBaseUrl}/scripts/bitwarden.ps1"
}
@ -128,7 +125,6 @@ elseif($stop) {
Invoke-Expression "$scriptsDir\run.ps1 -stop -outputDir $output -dockerDir $dockerDir"
}
elseif($updateself) {
Check-Output-Dir-Exists
Download-Self
echo "Updated self."
}