Fixed missing early exit upon unhandled file

This commit is contained in:
David C Wang 2018-04-12 15:18:23 +00:00
parent 69ab306eac
commit ef958a7f87
1 changed files with 1 additions and 0 deletions

View File

@ -176,6 +176,7 @@ for (( i=0; i<${length}; i++ )); do
touch $filepath_installed # Mark successful installation
else
echo "Unable to handle file $filepath_host"
exit 1
fi
fi
done