Skip to content

Commit 1fe83e1

Browse files
committed
GH-48222: [CI][Dev] Fix shellcheck errors in ci/scripts/cpp_build.sh
1 parent 7686b1f commit 1fe83e1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ci/scripts/cpp_build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ elif [ "${ARROW_EMSCRIPTEN:-OFF}" = "ON" ]; then
173173
# emcmake so we unset them
174174
unset LDFLAGS CFLAGS CXXFLAGS CPPFLAGS
175175
emcmake cmake \
176-
--preset=ninja-"${ARROW_BUILD_TYPE:-debug}"-emscripten \
176+
--preset="ninja-${ARROW_BUILD_TYPE:-debug}-emscripten" \
177177
-DCMAKE_VERBOSE_MAKEFILE="${CMAKE_VERBOSE_MAKEFILE:-OFF}" \
178178
-DCMAKE_C_FLAGS="${CFLAGS:-}" \
179179
-DCMAKE_CXX_FLAGS="${CXXFLAGS:-}" \
@@ -335,7 +335,7 @@ if [ -x "$(command -v ldconfig)" ]; then
335335
SUDO=
336336
fi
337337
fi
338-
${SUDO} ldconfig "${ARROW_HOME}"/"${CMAKE_INSTALL_LIBDIR:-lib}"
338+
${SUDO} ldconfig "${ARROW_HOME}/${CMAKE_INSTALL_LIBDIR:-lib}"
339339
fi
340340

341341
if [ "${ARROW_USE_CCACHE}" == "ON" ]; then

0 commit comments

Comments
 (0)