From 3985603c4326fb1b639b0a7bd8f8330026f572ec Mon Sep 17 00:00:00 2001 From: Aman Varshney Date: Sat, 29 Mar 2025 16:33:33 +0530 Subject: [PATCH] Use --yes flag instead of -y for clarity --- apps/web/src/app/(home)/_components/StackArchitech.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/app/(home)/_components/StackArchitech.tsx b/apps/web/src/app/(home)/_components/StackArchitech.tsx index fffc9d2..ad6fd64 100644 --- a/apps/web/src/app/(home)/_components/StackArchitech.tsx +++ b/apps/web/src/app/(home)/_components/StackArchitech.tsx @@ -379,10 +379,10 @@ const StackArchitect = () => { stackState.install === "true"; if (isAllDefault) { - return `${base} ${projectName} -y`; + return `${base} ${projectName} --yes`; } - flags.push("-y"); + flags.push("--yes"); if (!stackState.frontend.includes("web")) { flags.push("--no-web");