From 487d74d12e8d2e54fa33f3e30824a7fd64fb126a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn?= Date: Sun, 9 Aug 2020 19:43:53 +0200 Subject: [PATCH] adding --- app/Commands/LetsEncryptAddCommand.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/Commands/LetsEncryptAddCommand.php b/app/Commands/LetsEncryptAddCommand.php index 70cd63f..b51c8d5 100644 --- a/app/Commands/LetsEncryptAddCommand.php +++ b/app/Commands/LetsEncryptAddCommand.php @@ -48,5 +48,10 @@ class LetsEncryptAddCommand extends Command exec('certbot --non-interactive --agree-tos -m '.$this->argument('email').' --nginx '.$domainFlags, $output); $this->line(implode("\n", $output)); + + foreach($output as $line) { + //Congratulations! + //check for string + } } }