Skip to content

Commit 5e28927

Browse files
[FrameworkBundle] fix typo in CacheClearCommand
1 parent 8f27fda commit 5e28927

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Command/CacheClearCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
148148
if ('/' === \DIRECTORY_SEPARATOR && $mounts = @file('/proc/mounts')) {
149149
foreach ($mounts as $mount) {
150150
$mount = array_slice(explode(' ', $mount), 1, -3);
151-
if (!\in_array(array_pop($mount), array('vboxfs', 'nfs'))) {
151+
if (!\in_array(array_pop($mount), array('vboxsf', 'nfs'))) {
152152
continue;
153153
}
154154
$mount = implode(' ', $mount).'/';

0 commit comments

Comments
 (0)