scripts/InstallScripts/InstallPrawnOS.sh: only attempt to unmount if the device is mounted
This reduces unneeded noise to the console. If there is problem, we already ignored anyway, because of `|| /bin/true`
This commit is contained in:
parent
9d5dbaf846
commit
9680e986d7
@ -95,8 +95,17 @@ install() {
|
|||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# Only try to unmount if the device is mounted
|
||||||
|
# If it is, try anyway, the dd will (likely) take care of it anyway
|
||||||
|
if findmnt ${TARGET}1 > /dev/null
|
||||||
|
then
|
||||||
umount ${TARGET}1 || /bin/true
|
umount ${TARGET}1 || /bin/true
|
||||||
|
fi
|
||||||
|
|
||||||
|
if findmnt ${TARGET}2 > /dev/null
|
||||||
|
then
|
||||||
umount ${TARGET}2 || /bin/true
|
umount ${TARGET}2 || /bin/true
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ $TARGET == "/dev/mmcblk2p" ]]
|
if [[ $TARGET == "/dev/mmcblk2p" ]]
|
||||||
then
|
then
|
||||||
|
Loading…
Reference in New Issue
Block a user