Use --yes flag instead of -y for clarity

This commit is contained in:
Aman Varshney
2025-03-29 16:33:33 +05:30
parent bd487b7e66
commit 3985603c43

View File

@@ -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");