Fix missing semicolon
This commit is contained in:
parent
f3eb8e483b
commit
63d79e6d82
|
@ -88,7 +88,7 @@ prepare_iso() {
|
||||||
|
|
||||||
if [[ ! -f artifacts/${srcliveisofile} ]]; then
|
if [[ ! -f artifacts/${srcliveisofile} ]]; then
|
||||||
echo -n "Downloading Debian Live ISO... "
|
echo -n "Downloading Debian Live ISO... "
|
||||||
wget -O artifacts/${srcliveisofile} ${srcliveisourl} &>/dev/null || { rm -f artifacts/${srcliveisofile}; fail "Error downloading source ISO." }
|
wget -O artifacts/${srcliveisofile} ${srcliveisourl} &>/dev/null || { rm -f artifacts/${srcliveisofile}; fail "Error downloading source ISO."; }
|
||||||
echo "done."
|
echo "done."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue