Ignore project config in migration CLI calls
Some checks failed
CI / verify (push) Has been cancelled

This commit is contained in:
Codex
2026-04-29 14:46:26 +08:00
parent 17bfa25f73
commit 973f67b6ba

View File

@@ -97,6 +97,9 @@ export function buildSpacetimeCallArgs(options, procedureName, input) {
args.push('-s', options.serverUrl);
}
args.push(...options.passthrough);
if (!options.passthrough.includes('--no-config')) {
args.push('--no-config');
}
args.push(options.database, procedureName, JSON.stringify(input), '-y');
return args;
}