Skip to content

Commit e4812b2

Browse files
committed
fix(sandbox): don't create config file
1 parent 42f6aa5 commit e4812b2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sandbox.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -415,10 +415,10 @@ async function ensureOrg(options: SandboxContext, quiet: boolean = true) {
415415
false,
416416
options.org ?? configContent.org,
417417
null,
418-
true,
418+
quiet,
419419
);
420420

421-
if (!configContent.org && app.org) {
421+
if (config && !configContent.org && app.org) {
422422
await writeConfig(config, app.org);
423423
}
424424

0 commit comments

Comments
 (0)