Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Main to Development synchronization #151

Merged
merged 4 commits into from
Aug 26, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
updated imagemagick.sh to not reinstall again if imagemagick is alrea…
…dy installed
  • Loading branch information
JaKooLit committed Aug 25, 2024
commit 325aa90e1321abf2d20b31a5d60c37c4f9a93e3e
7 changes: 6 additions & 1 deletion install-scripts/imagemagick.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ for PKG1 in "${depend[@]}"; do
fi
done

##
# check if Imagemagick is already installed manually
if [ -f "/usr/local/bin/magick" ]; then
echo "${NOTE} /usr/local/bin/magick already exists. skipping installation of Imagemagick." 2>&1 | tee -a "$LOG"
exit 0
fi

printf "${NOTE} Installing ImageMagick from source...\n"

# Check if folder exists and remove it
Expand Down