[util-iso.sh] fix last commit

This commit is contained in:
Philip Müller 2019-06-13 21:39:47 +02:00
parent c478485648
commit dc241e9ae4

View file

@ -249,7 +249,7 @@ function seed_snaps() {
# Preseeded snaps should be downloaded from a versioned channel # Preseeded snaps should be downloaded from a versioned channel
rm -rfv "$1/${SEED_DIR}" rm -rfv "$1/${SEED_DIR}"
unset SEED_LIST SEED_LIST=()
# Download the published snaps and their related assert files # Download the published snaps and their related assert files
# Runs inside the container # Runs inside the container
@ -261,7 +261,7 @@ function seed_snaps() {
msg2 "Installing snap: %s" ${SEED_SNAP} msg2 "Installing snap: %s" ${SEED_SNAP}
chroot-run $1 snap download --channel="${SEED_CHANNEL}" "${SEED_SNAP}" chroot-run $1 snap download --channel="${SEED_CHANNEL}" "${SEED_SNAP}"
fi fi
SEED_LIST=$(${SEED_LIST} --snap=${SEED_SNAP}=${SEED_CHANNEL} SEED_LIST+=("--snap=${SEED_SNAP}=${SEED_CHANNEL}")
done done
# Move snaps and seertions to the correct place # Move snaps and seertions to the correct place