From 879501292d9801cb7a88bc7a481463b7787da399 Mon Sep 17 00:00:00 2001 From: Nils-Johan Gynther Date: Fri, 1 May 2026 01:06:44 +0200 Subject: [PATCH] fix: update deploy script to include git pull commands for recipe-app and microservice-importer --- deploy.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/deploy.sh b/deploy.sh index e31b06a6..799a5799 100644 --- a/deploy.sh +++ b/deploy.sh @@ -14,6 +14,12 @@ if [ ! -f ".env" ]; then exit 1 fi +echo "Hämtar senaste kod (recipe-app)..." +git pull origin main + +echo "Hämtar senaste kod (microservice-importer)..." +(cd "$SCRIPT_DIR/../microservice-importer" && git pull origin main) + echo "Bygger images..." docker compose -f compose.yml -f compose.flutter.yml build