Compare commits

..

2 commits

Author SHA1 Message Date
6553faa980 Display messages while unmounting disks 2023-07-09 13:01:23 +02:00
0edf1696dc Force unmounting 2023-07-09 12:43:30 +02:00

View file

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