Skip to content

Commit

Permalink
fix: fix typo on the configure script (#291)
Browse files Browse the repository at this point in the history
  • Loading branch information
eitsupi authored May 19, 2024
1 parent efcc306 commit 503a727
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ check_bin_lib() {

if [ "${LIBPRQLR_BUILD}" = "false" ] && [ -f "tools/lib-sums.tsv" ] && [ ! -f "${LIBPRQLR_PATH}" ]; then
echo ""
echo "--------------- [ TRY TO DOWNLOAD PRE-BUILT BINARY ] ---------------"
echo "--------------- [TRY TO DOWNLOAD PRE-BUILT BINARY] ---------------"
"${R_HOME}/bin${R_ARCH_BIN}/Rscript" "tools/prep-lib.R" || echo "Failed to download pre-built binary."
echo "--------------------------------------------------------------------"
echo ""
Expand All @@ -64,11 +64,11 @@ check_bin_lib() {
echo ""
fi
exit 0
elif [ "${LIBR_POLARS_BUILD}" = "false" ] && [ -f "${LIBR_POLARS_DEFAULT_PATH}" ]; then
elif [ "${LIBPRQLR_BUILD}" = "false" ] && [ -f "${LIBPRQLR_DEFAULT_PATH}" ]; then
echo ""
echo "---------------------- [LIBRARY BINARY FOUND] ----------------------"
echo "The library was not found at <${LIBR_POLARS_PATH}>,"
echo "but was found at <${LIBR_POLARS_DEFAULT_PATH}>."
echo "The library was not found at <${LIBPRQLR_PATH}>,"
echo "but was found at <${LIBPRQLR_DEFAULT_PATH}>."
echo "No need to build it."
echo "--------------------------------------------------------------------"
echo ""
Expand Down

0 comments on commit 503a727

Please sign in to comment.