diff options
| author | Olcan <[email protected]> | 2025-05-02 10:05:53 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-05-02 10:05:53 -0700 |
| commit | b8099538907e82f66b1273852832f33bab4d89a3 (patch) | |
| tree | 52dc8bc5ad1db2acfdf7dd62993f513fe7592029 | |
| parent | 539ab947a49b0351759df5192ed44f17d217b2f1 (diff) | |
sandbox arg should not default to false but rather undefined (#244)
| -rw-r--r-- | packages/cli/src/config/config.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/packages/cli/src/config/config.ts b/packages/cli/src/config/config.ts index d680baaa..94390ec1 100644 --- a/packages/cli/src/config/config.ts +++ b/packages/cli/src/config/config.ts @@ -37,7 +37,6 @@ async function parseArguments(): Promise<CliArgs> { alias: 's', type: 'boolean', description: 'Whether to run in sandbox mode. Defaults to false.', - default: false, }) .option('debug_mode', { alias: 'z', |
