move convert check to more senseful place

This commit is contained in:
Marcus 2024-01-04 23:00:22 +01:00
parent 6e624c173f
commit 602a6d212e
1 changed files with 8 additions and 7 deletions

View File

@ -212,11 +212,7 @@ done
convertimg() {
if ! command -v convert > /dev/null
then
message error "${YELLOW}convert${ENDCOLOR} not found"
exit 1
fi
if [ -n "$RESIZE" ]
then
RESIZE="-resize $RESIZE"
@ -475,10 +471,15 @@ case $1 in
fi
;;
*)
message "all requirements satisfied ${GREEN}:)${ENDCOLOR}"
;;
esac
if ! command -v convert > /dev/null
then
message error "${YELLOW}convert${ENDCOLOR} not found"
exit 1
fi
message "all requirements satisfied ${GREEN}:)${ENDCOLOR}"
floot
;;
*)