We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80de220 commit bea8a36Copy full SHA for bea8a36
src/utils/deploy.ts
@@ -142,7 +142,8 @@ export async function executeDeploy(
142
}
143
} else {
144
let stl: SourceTracking | undefined;
145
- if (!opts['dry-run']) {
+ if (!(opts['dry-run'] ?? opts.manifest ?? opts.metadata ?? opts['source-dir'])) {
146
+ // if not dry-run, or with source-tracking enabling flags
147
// instantiate source tracking
148
// stl will decide, based on the org's properties, what needs to be done
149
stl = await SourceTracking.create({
0 commit comments