[fix] fixed execution trouble in `clone` script

This commit is contained in:
xdrm-brackets 2017-07-22 23:32:36 +02:00
parent 31c58fcac6
commit 04f7701655
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ step3(){
step4(){
echo -e "\n>>> [4] Mounting partition ${DEV}2";
test ! -f ${DEV}2 && $( echo "<<< error: device ${DEV}2 does not exist" && exit );
test ! -f ${DEV}2 && ( echo "<<< error: device ${DEV}2 does not exist" && exit );
# [1] Mount device partition
sudo mount ${DEV}2 /mnt || $( echo "<<< error: can't mount" && exit );