mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-01 01:36:12 -04:00
Checking for imagemagick install.
This commit is contained in:
parent
cb128256ed
commit
5872658f8c
8
docker/prod/migrate-pictshare-to-pictrs.bash
vendored
8
docker/prod/migrate-pictshare-to-pictrs.bash
vendored
@ -19,8 +19,12 @@ if [[ -z $(docker-compose ps | grep pictrs) ]]; then
|
||||
exit
|
||||
fi
|
||||
|
||||
echo "Installing imagemagick to convert .webp images to .jpg"
|
||||
apt install imagemagick -y
|
||||
if [[ -z $(type -P convert) ]]; then
|
||||
echo "Installing imagemagick to convert .webp images to .jpg"
|
||||
apt install imagemagick -y
|
||||
else
|
||||
echo "Imagemagick already installed."
|
||||
fi
|
||||
|
||||
echo "Stopping Lemmy so that users dont upload new images during the migration"
|
||||
docker-compose stop lemmy
|
||||
|
Loading…
Reference in New Issue
Block a user