We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 302d73a commit 319e8deCopy full SHA for 319e8de
cli/src/commands/flow/flow.ts
@@ -240,10 +240,12 @@ async function preview(
240
} & SyncOptions,
241
flowPath: string
242
) {
243
- opts = await mergeConfigWithConfigFile(opts);
+ const useLocalPathScripts = !!opts.local;
244
+ if (useLocalPathScripts) {
245
+ opts = await mergeConfigWithConfigFile(opts);
246
+ }
247
const workspace = await resolveWorkspace(opts);
248
await requireLogin(opts);
- const useLocalPathScripts = !!opts.local;
249
const codebases = useLocalPathScripts ? await listSyncCodebases(opts) : [];
250
251
// Normalize path - ensure it's a directory path to a .flow folder
0 commit comments