Skip to content

Commit 57b6e18

Browse files
committed
Fix filesystem filtering in mountInfoList
1 parent eb30f10 commit 57b6e18

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/CliTools/Utility/UnixUtility.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public static function dockerVersion()
128128
*/
129129
public static function mountInfoList()
130130
{
131-
$command = new CommandBuilder('df', '-a --type=ext3 --type=ext4 --type vmhgfs --type vboxsf --type prl_fs --portability');
131+
$command = new CommandBuilder('df', '-a --type=ext3 --type=ext4 --type=vmhgfs --type=vboxsf --type=prl_fs --portability');
132132
$command->addPipeCommand(new CommandBuilder('tail', '--lines=+2'))
133133
->addPipeCommand(
134134
new CommandBuilder('awk', '\'{ print $6 " " $3 " " $4 " " $5 }\'')

0 commit comments

Comments
 (0)