Skip to content

Commit c4c872a

Browse files
committed
Fix typo
1 parent 7bda66e commit c4c872a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function isSHA(id) {
5454
* @return {Promise} - Resolved to full commit SHA.
5555
*/
5656
function fetchCommit(id, isBranch = null, module) {
57-
isBranch = isBranch === null ? !lib.isSHA(id) : isBranch;
57+
isBranch = isBranch === null ? !isSHA(id) : isBranch;
5858
const data = {
5959
owner: process.env['REPO_OWNER'],
6060
repo: module || process.env.REPO_NAME,

0 commit comments

Comments
 (0)