1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-05 00:20:08 +01:00

Clarify we need a Homebrew-managed version of ngrok.

Closes #1373
This commit is contained in:
Matt Stauffer
2023-02-23 09:38:27 -05:00
parent 866bc7e259
commit d1967bbd0c

View File

@@ -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.');