Skip to content

Commit 4fe5c17

Browse files
authored
Treat IOException as corrupt UEFS cache as well (#44)
1 parent 5d83914 commit 4fe5c17

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

UET/Redpoint.Uet.Workspace/VirtualWorkspaceProvider.cs

+4
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,10 @@ private async Task<IWorkspace> AllocateUefsPackageAsync(UefsPackageWorkspaceDesc
377377
{
378378
mountIsValid = false;
379379
}
380+
catch (IOException)
381+
{
382+
mountIsValid = false;
383+
}
380384

381385
if (mountIsValid)
382386
{

0 commit comments

Comments
 (0)