Update vaultwarden-update.sh

check for old path
This commit is contained in:
tteckster 2022-11-11 10:25:48 -05:00 committed by GitHub
parent 079d72f21c
commit cbc9d446f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -38,8 +38,12 @@ echo -e "${GN} Updating (Building) to ${VAULT} (Patience)... ${CL}"
git clone https://github.com/dani-garcia/vaultwarden &>/dev/null
cd vaultwarden
cargo build --features "sqlite,mysql,postgresql" --release &>/dev/null
cp target/release/vaultwarden /opt/vaultwarden/bin/
DIR=/usr/bin/vaultwarden
if [ -d "$DIR" ]; then
cp target/release/vaultwarden /usr/bin/
else
cp target/release/vaultwarden /opt/vaultwarden/bin/
fi
echo -e "${GN} Starting Vaultwarden ${VAULT}... ${CL}"
systemctl start vaultwarden.service
sleep 1