Skip to content

Commit

Permalink
switch quiet or verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
pelikhan committed Dec 13, 2023
1 parent f9b202a commit 899a390
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vscode/src/activateDeviceScript.ts
Expand Up @@ -102,9 +102,10 @@ export function activateDeviceScript(context: vscode.ExtensionContext) {
cwd,
})

let cmd = "npx --yes @devicescript/cli@latest init --quiet"
let cmd = "npx --yes @devicescript/cli@latest init"
if (yarn) cmd += " --yarn"
if (verbose) cmd += " --verbose"
else cmd += " --quiet"
terminal.sendText(cmd)
terminal.show()

Expand Down

0 comments on commit 899a390

Please sign in to comment.