Skip to content

Commit 786e36e

Browse files
committed
Right. Environment variable on windows should be uppercase.
1 parent a859e8d commit 786e36e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/open-cherry-pick-pr.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const userName = process.env.GH_USERNAME;
1111
const reviewers = process.env.REQUESTING_USER ? [process.env.REQUESTING_USER] : ["weswigham", "RyanCavanaugh"];
1212
const branchName = `pick/${process.env.SOURCE_ISSUE}/${process.env.TARGET_BRANCH}`;
1313
const remoteUrl = `https://${process.argv[2]}@github.com/${userName}/TypeScript.git`;
14-
const produceLKG = !!process.env.produceLKG;
14+
const produceLKG = !!process.env.PRODUCE_LKG;
1515

1616
async function main() {
1717
if (!process.env.TARGET_BRANCH) {

0 commit comments

Comments
 (0)