Remove default "--addons none" flag when no addons selected

This commit is contained in:
Aman Varshney
2025-04-02 14:05:09 +05:30
parent 612752d617
commit 6325e647ce

View File

@@ -441,8 +441,6 @@ const StackArchitect = () => {
if (stackState.addons.length > 0) { if (stackState.addons.length > 0) {
flags.push(`--addons ${stackState.addons.join(" ")}`); flags.push(`--addons ${stackState.addons.join(" ")}`);
} else {
flags.push("--addons none");
} }
if (stackState.examples.length > 0) { if (stackState.examples.length > 0) {