From 36742cb17205ccc110dbbe8a518d0f79c39eac06 Mon Sep 17 00:00:00 2001 From: montagneid Date: Fri, 8 May 2026 15:19:47 +0200 Subject: [PATCH] Add update scripts --- ct/umbraco.sh | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/ct/umbraco.sh b/ct/umbraco.sh index b77f8786..3c6eafe8 100644 --- a/ct/umbraco.sh +++ b/ct/umbraco.sh @@ -28,9 +28,19 @@ function update_script() { exit fi msg_info "Updating ${APP} LXC" - $STD apt-get update - $STD apt-get -y upgrade - msg_ok "Updated successfully!" + $STD apt update + $STD apt -y upgrade + msg_ok "Updated ${APP} LXC" + + msg_info "Updating .NET SDK" + $STD apt install -y dotnet-sdk-10.0 + msg_ok "Updated .NET SDK" + + msg_info "Updating Umbraco Templates" + $STD dotnet new update + msg_ok "Updated Umbraco Templates" + + msg_ok "Update completed successfully!" exit }