From 762f70e2844beb18b90220cb67ba8b38714c8029 Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Wed, 11 Dec 2024 22:40:33 +0800 Subject: [PATCH] wip Signed-off-by: Mior Muhammad Zaki --- src/Foundation/Console/PurgeCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Foundation/Console/PurgeCommand.php b/src/Foundation/Console/PurgeCommand.php index 37126b1..b28e1c2 100644 --- a/src/Foundation/Console/PurgeCommand.php +++ b/src/Foundation/Console/PurgeCommand.php @@ -68,7 +68,7 @@ protected function purgeDebuggingFiles(string $relativePath, string $patterns): if (! is_dir($path)) { $this->components->warn( - "Unable to purge missing directory [{$relativePath}].", OutputInterface::VERBOSITY_DEBUG + "Unable to purge missing directory [./{$relativePath}].", OutputInterface::VERBOSITY_DEBUG ); return; @@ -78,6 +78,6 @@ protected function purgeDebuggingFiles(string $relativePath, string $patterns): @unlink($file->getRealPath()); } - $this->components->task("Purged \"{$patterns}\" from [{$relativePath}] path."); + $this->components->task("Purged \"{$patterns}\" from [./{$relativePath}] path."); } }