From 04f77016555ff88289f82397c9ede50a3fd3bdff Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Sat, 22 Jul 2017 23:32:36 +0200 Subject: [PATCH] [fix] fixed execution trouble in `clone` script --- clone/clone | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clone/clone b/clone/clone index 6e8a79a..48cf10e 100755 --- a/clone/clone +++ b/clone/clone @@ -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 );