Skip to content

Commit

Permalink
Right. Environment variable on windows should be uppercase.
Browse files Browse the repository at this point in the history
  • Loading branch information
weswigham committed Aug 16, 2019
1 parent a859e8d commit 786e36e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/open-cherry-pick-pr.ts
Expand Up @@ -11,7 +11,7 @@ const userName = process.env.GH_USERNAME;
const reviewers = process.env.REQUESTING_USER ? [process.env.REQUESTING_USER] : ["weswigham", "RyanCavanaugh"];
const branchName = `pick/${process.env.SOURCE_ISSUE}/${process.env.TARGET_BRANCH}`;
const remoteUrl = `https://${process.argv[2]}@github.com/${userName}/TypeScript.git`;
const produceLKG = !!process.env.produceLKG;
const produceLKG = !!process.env.PRODUCE_LKG;

async function main() {
if (!process.env.TARGET_BRANCH) {
Expand Down

0 comments on commit 786e36e

Please sign in to comment.