From f5d699e6920dd4d1e2779ab1e2710fdd767b38e4 Mon Sep 17 00:00:00 2001 From: Adam Gleitman Date: Thu, 7 Sep 2023 12:26:13 -0700 Subject: [PATCH] Use correct package.json file --- .ado/versionUtils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ado/versionUtils.js b/.ado/versionUtils.js index 89bb3f112d8794..1511df7b3e9608 100644 --- a/.ado/versionUtils.js +++ b/.ado/versionUtils.js @@ -4,7 +4,7 @@ const path = require("path"); const semver = require('semver'); const {execSync} = require('child_process'); -const pkgJsonPath = path.resolve(__dirname, "../package.json"); +const pkgJsonPath = path.resolve(__dirname, "../packages/react-native/package.json"); let publishBranchName = ''; try { publishBranchName = process.env.BUILD_SOURCEBRANCH.match(/refs\/heads\/(.*)/)[1];