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

@ -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