From 102a1584983e15f62d704bc213ad39765d719342 Mon Sep 17 00:00:00 2001 From: roble Date: Sat, 20 Jun 2026 09:59:35 +0100 Subject: [PATCH] fix: update command syntax in Taskfile for db:seed and types:generate tasks --- Taskfile.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index 88f598b..25ffe3b 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -16,10 +16,10 @@ tasks: db:seed: desc: Seed the Roadmap module database - cmd: php artisan modules:seed --module=roadmap + cmd: '{{.APP}} php artisan modules:seed --module=roadmap' # ── Code Generation ──────────────────────────────────────────── types:generate: desc: Generate TypeScript types from PHP DTOs and enums - cmd: php artisan module:generate-types roadmap + cmd: '{{.APP}} php artisan module:generate-types roadmap'