1
0
Fork 0

Wrap final attempt to touch a cache file in Silencer.

pull/4924/head
Niels Keurentjes 2016-02-16 14:01:21 +01:00
parent d6d0435c54
commit 254453f5b5
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ class Cache
} catch (\ErrorException $e) { } catch (\ErrorException $e) {
// fallback in case the above failed due to incorrect ownership // fallback in case the above failed due to incorrect ownership
// see https://github.com/composer/composer/issues/4070 // see https://github.com/composer/composer/issues/4070
touch($this->root . $file); Silencer::call('touch', $this->root . $file);
} }
$this->io->writeError('Reading '.$this->root . $file.' from cache', true, IOInterface::DEBUG); $this->io->writeError('Reading '.$this->root . $file.' from cache', true, IOInterface::DEBUG);