From dbcb6ce2da54cca82dc0b46e92ed028f79ea4336 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Sun, 6 Nov 2011 16:46:11 -0500 Subject: functions: properly quote ${mounts[@]} Signed-off-by: Dave Reisner --- functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'functions') diff --git a/functions b/functions index d388260..7de58c1 100644 --- a/functions +++ b/functions @@ -485,7 +485,7 @@ umount_all() { mounts+=("$target") done < <(findmnt -runRo TARGET,FSTYPE,OPTIONS / | tac) - umount -r ${mounts[@]} + umount -r "${mounts[@]}" } -- cgit v1.2.3