From 0f7dde09753654d9097ea031ebbb723d4863cf1a Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Fri, 2 Feb 2024 23:17:33 +0100 Subject: [PATCH] add quiet option --- cli/main.ts | 8 +++++++- frontend/src/lib/components/CliHelpBox.svelte | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) 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 @@