Skip to content

Commit 07732b5

Browse files
Merge branch '4.0'
* 4.0: [WebProfilerBundle] Fix Debug toolbar breaks app Use fill instead of style for svg colors bumped Symfony version to 4.0.6 updated VERSION for 4.0.5 updated CHANGELOG for 4.0.5 bumped Symfony version to 3.4.6 updated VERSION for 3.4.5 updated CHANGELOG for 3.4.5 bumped Symfony version to 2.8.36 updated VERSION for 2.8.35 updated CHANGELOG for 2.8.35 [FrameworkBundle] Silence "Failed to remove directory" on cache:clear bumped Symfony version to 2.7.43 updated VERSION for 2.7.42 update CONTRIBUTORS for 2.7.42 updated CHANGELOG for 2.7.42
2 parents e51378c + d47d6da commit 07732b5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Command/CacheClearCommand.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,9 @@ protected function execute(InputInterface $input, OutputInterface $output)
130130
try {
131131
$fs->remove($oldCacheDir);
132132
} catch (IOException $e) {
133-
$io->warning($e->getMessage());
133+
if ($output->isVerbose()) {
134+
$io->warning($e->getMessage());
135+
}
134136
}
135137

136138
if ($output->isVerbose()) {

0 commit comments

Comments
 (0)