Skip to content

Commit

Permalink
Clarify we need a Homebrew-managed version of ngrok.
Browse files Browse the repository at this point in the history
Closes #1373
  • Loading branch information
mattstauffer committed Feb 23, 2023
1 parent 866bc7e commit d1967bb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cli/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -424,8 +424,9 @@ function (ConsoleCommandEvent $event) {
}

if (! Ngrok::installed()) {
info("\nIn order to share with ngrok, you'll need a version\nof ngrok installed and managed by Homebrew.");
$helper = $this->getHelperSet()->get('question');
$question = new ConfirmationQuestion('Would you like to install ngrok now? [y/N] ', false);
$question = new ConfirmationQuestion('Would you like to install ngrok via Homebrew now? [y/N] ', false);

if (false === $helper->ask($input, $output, $question)) {
info('Proceeding without installing ngrok.');
Expand Down

0 comments on commit d1967bb

Please sign in to comment.