Display messages while unmounting disks

This commit is contained in:
Manuel Thalmann 2023-07-09 13:01:23 +02:00
parent 0edf1696dc
commit 6553faa980

View file

@ -120,9 +120,9 @@ else
sudo wimdelete --soft "$wimFile" 2;
done;
sudo umount -f "$mountPath";
sudo umount -f "$bootPath";
sudo umount -f "$dataPath";
sudo umount -vf "$mountPath";
sudo umount -vf "$bootPath";
sudo umount -vf "$dataPath";
sudo rm -rf "$mountPath" "$bootPath" "$dataPath";
fi;