Skip to content

Commit

Permalink
Remove obsolete message about legacy CLI.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbleigh committed Apr 7, 2017
1 parent 4570d52 commit aaecba1
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions lib/requireAccess.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,8 @@ module.exports = function(options, authScopes) {
}

return RSVP.reject(new FirebaseError(
'Unable to authorize access to project ' + chalk.bold(projectId) + '\n\n' +
chalk.bold.cyan('Note:') + ' This version of the Firebase CLI is only compatible with projects upgraded\n' +
'to the new Firebase Console. To access firebase.com apps, you will need to\n' +
'use a previous version: ' + chalk.bold('npm install -g firebase-tools@^2.1') + '\n\n' +
'To access the Firebase Console, visit ' + chalk.underline('https://console.firebase.google.com/'), {
exit: 1
}));
'Unable to authorize access to project ' + chalk.bold(projectId), {exit: 1}
));
});
});
};

0 comments on commit aaecba1

Please sign in to comment.