From ddef67c34aa996a240abc3e3d191ee0a1744d900 Mon Sep 17 00:00:00 2001 From: Marco Amadori Date: Tue, 16 Sep 2008 16:13:18 +0200 Subject: [PATCH] Fixed a wrong trial to copy an unexistant snapshot. * Quoting a variable could do miracles :-) --- scripts/live | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/live b/scripts/live index 08810cb..b7fd4ce 100755 --- a/scripts/live +++ b/scripts/live @@ -921,7 +921,7 @@ try_snap () else dev=$(find_cow_device "${snap_label}") - if [ -b ${dev} ] + if [ -b "${dev}" ] then if echo "${dev}" | grep -qs loop then -- 2.1.4