Skip to content

Commit

Permalink
Don't assume the default branch is "master"
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnTitor authored and wesleytodd committed Oct 17, 2023
1 parent 849c636 commit 3fa39bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/project.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ module.exports.Project = class Project {
this.repo = repo
this.repoOwner = repoOwner
this.repoName = repoName
this.repoBranch = proj.repoBranch || 'master'
this.repoBranch = proj.repoBranch || 'HEAD'
this.repoDirectory = proj.repoDirectory || '/'
this.packageName = null
}
Expand Down

0 comments on commit 3fa39bf

Please sign in to comment.