Skip to content

Commit dfae96c

Browse files
authored
Merge pull request #1929 from amgleitman/0.72-publish-fix-package-path
Use correct package.json file when publishing new versions
2 parents 19bf859 + f5d699e commit dfae96c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.ado/versionUtils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const path = require("path");
44
const semver = require('semver');
55
const {execSync} = require('child_process');
66

7-
const pkgJsonPath = path.resolve(__dirname, "../package.json");
7+
const pkgJsonPath = path.resolve(__dirname, "../packages/react-native/package.json");
88
let publishBranchName = '';
99
try {
1010
publishBranchName = process.env.BUILD_SOURCEBRANCH.match(/refs\/heads\/(.*)/)[1];

0 commit comments

Comments
 (0)