Skip to content

Commit 0edc03e

Browse files
committed
slight fix
1 parent fc05298 commit 0edc03e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/build/src/npm-packages/publish.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { spawnSync } from '../helpers/spawn-sync';
1111
import type { SpawnSyncOptionsWithStringEncoding } from 'child_process';
1212

1313
export function publishNpmPackages(
14-
isDryRun: boolean,
14+
isDryRun = false,
1515
isAuxiliaryOnly = false,
1616
listNpmPackages: typeof listNpmPackagesFn = listNpmPackagesFn,
1717
markBumpedFilesAsAssumeUnchangedFn: typeof markBumpedFilesAsAssumeUnchanged = markBumpedFilesAsAssumeUnchanged,

packages/build/src/run-publish.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export async function runPublish(
8181
// ensures the segment api key to be present in the published packages
8282
await writeBuildInfo(config, 'packaged');
8383

84-
publishNpmPackages(!!config.isDryRun, config.isAuxiliaryOnly);
84+
publishNpmPackages(config.isDryRun, config.isAuxiliaryOnly);
8585

8686
await publishToHomebrew(
8787
homebrewCoreGithubRepo,

0 commit comments

Comments
 (0)