Browse Source

Use options.diffId rather than diffId (#4793)

Sarah Norris 3 years ago
parent
commit
fe99c23e14
1 changed files with 1 additions and 1 deletions
  1. 1 1
      theme-utils.mjs

+ 1 - 1
theme-utils.mjs

@@ -622,7 +622,7 @@ async function tagDeployment(options={}) {
 
 	let workInTheOpenPhabricatorUrl = '';
 	if (options.diffId) {
-		workInTheOpenPhabricatorUrl = `Phabricator: ${diffId}-code`;
+		workInTheOpenPhabricatorUrl = `Phabricator: ${options.diffId}-code`;
 	}
 	let projectVersion = await executeCommand(`node -p "require('./package.json').version"`);
 	let logs = await executeCommand(`git log --reverse --pretty=format:%s ${hash}..HEAD`);