From 1d8a2ec4e1ed9976829e85109115500ab6f80757 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Tue, 14 Feb 2012 17:19:02 +0100 Subject: [PATCH] [scripts] mkloopcard.sh: damn bash expansion --- scripts/mkloopcard.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/mkloopcard.sh b/scripts/mkloopcard.sh index 218ef8f..0ed2086 100755 --- a/scripts/mkloopcard.sh +++ b/scripts/mkloopcard.sh @@ -248,7 +248,7 @@ fi # BOOT_PART_TYPE_INSIDE_ROOT if [ -n "${BOOT_PART_TYPE_INSIDE_ROOT}" ]; then echo "Copying data from ${tmp_dir}/boot to ${boot_tmp_dir} as requested..." - cp -Rp "${tmp_dir}/boot/*" "${boot_tmp_dir}/" || exit 1 + cp -Rp "${tmp_dir}/boot/"* "${boot_tmp_dir}/" || exit 1 fi umount "${boot_tmp_dir}" || exit 1