From 8ec5e387af028330d211c254b03fb3b0b72b2bed Mon Sep 17 00:00:00 2001 From: John Enlow Date: Wed, 25 Mar 2026 15:23:17 +1300 Subject: [PATCH] feat: Pull latest template from git before creating service --- source/src/commands/create-service.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/src/commands/create-service.cpp b/source/src/commands/create-service.cpp index 3a2b659..2ebc8f4 100644 --- a/source/src/commands/create-service.cpp +++ b/source/src/commands/create-service.cpp @@ -148,6 +148,9 @@ namespace dropshell return false; } + // Pull latest template from git if applicable + gTemplateManager().pull_for_template(template_name); + template_info tinfo = gTemplateManager().get_template_info(template_name); if (!tinfo.is_set()) {