From 5b98f84f853cecc5b2dcaa8bf66eb0cfaa0782a6 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Wed, 26 Mar 2025 10:30:12 +0100 Subject: [PATCH] Update alpine-gitea.sh --- ct/alpine-gitea.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ct/alpine-gitea.sh b/ct/alpine-gitea.sh index 051ea6f..07f4471 100644 --- a/ct/alpine-gitea.sh +++ b/ct/alpine-gitea.sh @@ -31,15 +31,15 @@ echo "Start update_script" function update_script() { header_info msg_info "Updating Alpine Packages" - $STD apk update && apk upgrade + apk update && apk upgrade msg_ok "Updated Alpine Packages" msg_info "Updating Gitea" - $STD apk upgrade gitea + apk upgrade gitea msg_ok "Updated Gitea" msg_info "Restarting Gitea" - $STD rc-service gitea restart + rc-service gitea restart msg_ok "Restarted Gitea" } echo "finish update_script"