1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 11:08:02 -06:00

macOS: Fix regression in dismount caused by wrong umount path (#1467)

This commit is contained in:
Mounir IDRASSI
2025-01-22 17:48:51 +01:00
parent 05ea7c120a
commit b42841ed3c

View File

@@ -84,7 +84,7 @@ namespace VeraCrypt
{
try
{
Process::Execute ("/usr/bin/umount", args);
Process::Execute ("/sbin/umount", args);
break;
}
catch (ExecutedProcessFailed&)