We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d480352 commit fbb3009Copy full SHA for fbb3009
bin/commands/interactive.mjs
@@ -145,7 +145,10 @@ export default async function interactive() {
145
146
// Handle different value types (boolean, array, string)
147
if (typeof value === 'boolean') {
148
- if (value) cmdParts.push(flag);
+ if (value) {
149
+ cmdParts.push(flag);
150
+ executionArgs.push(flag);
151
+ }
152
} else if (Array.isArray(value)) {
153
for (const item of value) {
154
cmdParts.push(flag, escapeShellArg(item));
0 commit comments