mirror of
https://github.com/YunoHost-Apps/lemmy_ynh.git
synced 2024-09-03 19:36:09 +02:00
Fix ImageMagick download²
This commit is contained in:
parent
81facf963e
commit
7ffd19d938
2 changed files with 2 additions and 2 deletions
|
@ -91,7 +91,7 @@ chown -R $app:$app "$install_dir"
|
|||
|
||||
# (Dirty) Install ImageMagick
|
||||
# Requires 'libfuse2' and 'libimage-exiftool-perl' apt dependencies
|
||||
wget -f https://imagemagick.org/archive/binaries/magick -O "$install_dir/pict-rs/magick" -q
|
||||
wget https://imagemagick.org/archive/binaries/magick -O "$install_dir/pict-rs/magick" -q
|
||||
[ ! -f "$install_dir/pict-rs/magick" ] && ynh_print_err --message="ImageMagick could not be downloaded"
|
||||
chmod 750 "$install_dir/pict-rs/magick"
|
||||
chown $app:$app "$install_dir/pict-rs/magick"
|
||||
|
|
|
@ -130,7 +130,7 @@ then
|
|||
|
||||
# (Dirty) Install ImageMagick
|
||||
# Requires 'libfuse2' and 'libimage-exiftool-perl' apt dependencies
|
||||
wget -f https://imagemagick.org/archive/binaries/magick -O "$install_dir/pict-rs/magick" -q
|
||||
wget https://imagemagick.org/archive/binaries/magick -O "$install_dir/pict-rs/magick" -q
|
||||
[ ! -f "$install_dir/pict-rs/magick" ] && ynh_print_err --message="ImageMagick could not be downloaded"
|
||||
chmod 750 "$install_dir/pict-rs/magick"
|
||||
chown $app:$app "$install_dir/pict-rs/magick"
|
||||
|
|
Loading…
Reference in a new issue