Browse Source

Update linkwarden.sh

-  create update path
tteckster 1 year ago
parent
commit
c870b93810
1 changed files with 15 additions and 1 deletions
  1. 15 1
      ct/linkwarden.sh

+ 15 - 1
ct/linkwarden.sh

@@ -53,7 +53,21 @@ function default_settings() {
 function update_script() {
 function update_script() {
 header_info
 header_info
 if [[ ! -d /opt/linkwarden ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
 if [[ ! -d /opt/linkwarden ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
-msg_error "There is currently no update path available."
+msg_info "Updating $APP"
+systemctl stop linkwarden
+cd /opt/linkwarden
+if git pull | grep 'Already up to date'; then
+  echo "Exiting script."
+  systemctl start linkwarden
+  exit
+fi
+git pull
+yarn
+npx playwright install-deps
+yarn build
+yarn prisma migrate deploy
+systemctl start linkwarden
+msg_ok "Updated $APP"
 exit
 exit
 }
 }