Skip to content

Commit d47d6da

Browse files
Merge branch '3.4' into 4.0
* 3.4: [WebProfilerBundle] Fix Debug toolbar breaks app Use fill instead of style for svg colors 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 1221c54 + ee18b39 commit d47d6da

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)