diff --git a/cli/main.ts b/cli/main.ts index b5a96ed9f2..529fc90ac3 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -84,7 +84,13 @@ let command: any = new Command() "upgrade", new UpgradeCommand({ main: "main.ts", - args: ["--allow-net", "--allow-read", "--allow-write", "--allow-env"], + args: [ + "--allow-net", + "--allow-read", + "--allow-write", + "--allow-env", + "-q", + ], provider: new DenoLandProvider({ name: "wmill" }), }) ) diff --git a/frontend/src/lib/components/CliHelpBox.svelte b/frontend/src/lib/components/CliHelpBox.svelte index 64965b7083..1d45b2de16 100644 --- a/frontend/src/lib/components/CliHelpBox.svelte +++ b/frontend/src/lib/components/CliHelpBox.svelte @@ -12,7 +12,7 @@