diff options
Diffstat (limited to 'src/scripts/22iso.sh')
-rw-r--r-- | src/scripts/22iso.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/scripts/22iso.sh b/src/scripts/22iso.sh index 96ab7778b..d990e2417 100644 --- a/src/scripts/22iso.sh +++ b/src/scripts/22iso.sh @@ -14,7 +14,10 @@ Iso () if [ ! -f "${LIVE_ROOT}"/.stage/image_binary ] then mkdir -p "${LIVE_ROOT}"/binary/casper - mv "${LIVE_ROOT}"/filesystem.manifest* "${LIVE_ROOT}"/binary/casper/ + for manifest in "${LIVE_ROOT}"/filesystem.manifest* + do + mv "${manifest}" "${LIVE_ROOT}"/binary/casper/ + done # Switching package indices to default if [ "${LIVE_GENERIC_INDICES}" = "yes" ] |