Skip to content

Commit

Permalink
refactor: quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
eitsupi committed Oct 11, 2023
1 parent 8947f48 commit 3c664ba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/experimental/install_dev_osgeo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -134,13 +134,13 @@ apt-get update -y &&
mkdir build_cmake &&
cd build_cmake &&
../bootstrap --prefix=/usr --disable-werror &&
make -j$(nproc) &&
make "-j$(nproc)" &&
make install-tiledb DESTDIR="/build_thirdparty" &&
make install-tiledb &&
cd ../.. &&
rm -rf tiledb &&
for i in /build_thirdparty/usr/lib/${GCC_ARCH}-linux-gnu/*; do strip -s $i 2>/dev/null || /bin/true; done &&
for i in /build_thirdparty/usr/bin/*; do strip -s $i 2>/dev/null || /bin/true; done
for i in /build_thirdparty/usr/lib/"${GCC_ARCH}"-linux-gnu/*; do strip -s "$i" 2>/dev/null || /bin/true; done &&
for i in /build_thirdparty/usr/bin/*; do strip -s "$i" 2>/dev/null || /bin/true; done

LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH

Expand Down Expand Up @@ -206,7 +206,7 @@ cd /build_local

apt-get update && apt-get -y install cargo

install2.r --error --skipmissing -n "$NCPUS" -r ${CRAN_SOURCE} \
install2.r --error --skipmissing -n "$NCPUS" -r "${CRAN_SOURCE}" \
sf \
terra \
lwgeom \
Expand Down

0 comments on commit 3c664ba

Please sign in to comment.