From fc59db8eedae32191df9f63dc892c7ad761b68fb Mon Sep 17 00:00:00 2001 From: bohung Date: Thu, 25 Aug 2022 08:22:21 +0800 Subject: [PATCH] Fix bug. --- install_orbit_environment.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_orbit_environment.sh b/install_orbit_environment.sh index dc1d7e3..07d0431 100644 --- a/install_orbit_environment.sh +++ b/install_orbit_environment.sh @@ -145,7 +145,7 @@ if [ -z $(which convert) ]; then apt install -y cmake pkg-config libbrotli-dev && \ wget -nc https://imagemagick.org/archive/ImageMagick.tar.gz && \ tar xfz ImageMagick.tar.gz && \ - cd `ls -d /root/libpng-1.5.13/ImageMagick-7*` && \ + cd /root/libpng-1.5.13/ImageMagick-7* && \ ./configure --with-bzlib=yes --with-fontconfig=yes --with-freetype=yes --with-gslib=yes --with-gvc=yes --with-jpeg=yes --with-jp2=yes --with-png=yes --with-tiff=yes --disable-shared --with-modules && \ make && make install && \ ln -s /usr/local/lib/* /usr/lib/. && \