Merge pull request #3121 from antonlacon/mkimage-fixup

scripts/mkimage: die is unknown; exit 1
This commit is contained in:
MilhouseVH 2018-11-22 21:46:19 +00:00 committed by GitHub
commit 38447b56c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,11 +44,11 @@ show_error() {
if [ -s "${SAVE_ERROR}" ]; then if [ -s "${SAVE_ERROR}" ]; then
cat "${SAVE_ERROR}" cat "${SAVE_ERROR}"
else else
echo "Folder $LE_TMP might be out of free space..." echo "Folder ${LE_TMP} might be out of free space..."
fi fi
echo echo
cleanup cleanup
die exit 1
} }
trap cleanup SIGINT trap cleanup SIGINT