Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <[email protected]>
  • Loading branch information
crynobone committed Dec 11, 2024
1 parent 5cb0b7c commit 762f70e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Foundation/Console/PurgeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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.");
}
}

0 comments on commit 762f70e

Please sign in to comment.