]> Untitled Git - lemmy.git/commitdiff
Checking for imagemagick install.
authorDessalines <tyhou13@gmx.com>
Mon, 22 Jun 2020 14:53:03 +0000 (10:53 -0400)
committerDessalines <tyhou13@gmx.com>
Mon, 22 Jun 2020 14:54:33 +0000 (10:54 -0400)
docker/prod/migrate-pictshare-to-pictrs.bash

index 14ec07f200e9ed0ed03b894c4c4211a9805fada6..ea3007a6edac71068d0881c9b08b23f471dbfb61 100644 (file)
@@ -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