8000 bug #27337 [FrameworkBundle] fix typo in CacheClearCommand (emilielo… · symfony/symfony@8e20ab5 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8e20ab5

Browse files
bug #27337 [FrameworkBundle] fix typo in CacheClearCommand (emilielorenzo)
This PR was merged into the 3.4 branch. Discussion ---------- [FrameworkBundle] fix typo in CacheClearCommand | Q | A | ------------- | --- | Branch? | 3.4 | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - vboxsf is the correct name, see e.g. https://help.ubuntu.com/community/VirtualBox/SharedFolders Commits ------- b1ec831 [FrameworkBundle] fix typo in CacheClearCommand
2 parents 52270d1 + b1ec831 commit 8e20ab5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/FrameworkBundle/Command/CacheClearCommand.php

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)
0