From be18843eb080e73a32de2e5fcac4bf0f8e50be74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn?= Date: Sun, 9 Aug 2020 23:04:56 +0200 Subject: [PATCH] adding --- app/Commands/LetsEncryptRemoveCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Commands/LetsEncryptRemoveCommand.php b/app/Commands/LetsEncryptRemoveCommand.php index b98e6d9..1347a83 100644 --- a/app/Commands/LetsEncryptRemoveCommand.php +++ b/app/Commands/LetsEncryptRemoveCommand.php @@ -55,7 +55,7 @@ class LetsEncryptRemoveCommand extends Command if (!file_exists($directory)) { $errors++; } else { - rmdir($directory); + exec('rm -rf '.$directory.' 2&>1', $output); } }