fix: Delete ISO when extraction fails

This commit is contained in:
Kroese 2024-04-13 17:04:34 +02:00 committed by GitHub
parent f9775e7602
commit 3a8879335f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -193,7 +193,6 @@ startInstall() {
ISO="$STORAGE/$CUSTOM"
fi
rm -f "$TMP/$BASE"
return 0
}
@ -413,6 +412,7 @@ extractImage() {
if [[ "${iso,,}" == *".esd" ]]; then
if ! extractESD "$iso" "$dir"; then
error "Failed to extract ESD file!"
rm -f "$iso"
exit 67
fi
return 0
@ -444,6 +444,7 @@ extractImage() {
if ! 7z x "$iso" -o"$dir" > /dev/null; then
error "Failed to extract ISO file!"
rm -f "$iso"
exit 66
fi