Skip to content

Commit 9436ebc

Browse files
committed
don't require heroku user to have a github.com email
1 parent 3053f15 commit 9436ebc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/release.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function checkHerokuLoginStatus () {
3434
console.log('Checking Heroku login status')
3535

3636
childProcess.exec('heroku whoami', (error, stdout, stderr) => {
37-
if (error || !stdout.match('github.com')) {
37+
if (error) {
3838
reject('You are not logged in to GitHub\'s Heroku Enterprise account. To log in, run this command:\n$ heroku login --sso')
3939
} else {
4040
resolve()

0 commit comments

Comments
 (0)