Skip to content

Commit ac61c14

Browse files
committed
Fix typo in template action watcher script (#47286)
Summary: Trivial typo - static analysis would have been a good thing. Changelog: [Internal] Pull Request resolved: #47286 Test Plan: eyes Reviewed By: NickGerleman Differential Revision: D65145600 Pulled By: blakef fbshipit-source-id: 567ef3637441aa84651dce03f45b80068c5f4290
1 parent 81737c2 commit ac61c14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflow-scripts/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ module.exports.sleep = sleep;
2121

2222
async function getNpmPackageInfo(pkg, versionOrTag) {
2323
return fetch(`https://registry.npmjs.org/${pkg}/${versionOrTag}`).then(resp =>
24-
res.json(),
24+
resp.json(),
2525
);
2626
}
2727
module.exports.getNpmPackageInfo = getNpmPackageInfo;

0 commit comments

Comments
 (0)