Fix missing semicolon

This commit is contained in:
Joshua Boniface 2019-12-13 14:09:03 -05:00
parent 0ea2fd2adc
commit 97d05a64bc
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ prepare_iso() {
if [[ ! -f artifacts/${srcliveisofile} ]]; then
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."
fi