mirror of
https://github.com/bitwarden/server.git
synced 2024-12-23 17:07:42 +01:00
data dir doesnt need to exist to updateself
This commit is contained in:
parent
0e247b711d
commit
97bfa00657
@ -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."
|
||||
}
|
||||
|
@ -48,10 +48,6 @@ GITHUB_BASE_URL="https://raw.githubusercontent.com/bitwarden/core/master"
|
||||
# Functions
|
||||
|
||||
function downloadSelf() {
|
||||
if [ ! -d "$SCRIPTS_DIR" ]
|
||||
then
|
||||
mkdir $SCRIPTS_DIR
|
||||
fi
|
||||
curl -s -o $SCRIPT_PATH $GITHUB_BASE_URL/scripts/bitwarden.sh
|
||||
chmod u+x $SCRIPT_PATH
|
||||
}
|
||||
@ -142,7 +138,6 @@ then
|
||||
$SCRIPTS_DIR/run.sh stop $OUTPUT $DOCKER_DIR
|
||||
elif [ "$1" == "updateself" ]
|
||||
then
|
||||
checkOutputDirExists
|
||||
downloadSelf
|
||||
echo "Updated self."
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user