Don't remove /apps when cleaning up

This commit is contained in:
nathangray 2020-10-07 09:22:09 -06:00
parent 1c1ee3a25b
commit 7ae230356f

View File

@ -112,6 +112,9 @@ class SharingBase extends LoggedInTest
// Remove any mounts
foreach($this->mounts as $mount)
{
// Do not remove /apps
if($mount == '/apps') continue;
Vfs::umount($mount);
}