Skip to content

Commit

Permalink
chore: tweak message
Browse files Browse the repository at this point in the history
  • Loading branch information
eitsupi committed Sep 19, 2024
1 parent 9424988 commit 1d56e55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ EOF
--------------- [TRY TO DOWNLOAD PRE-BUILT BINARY] ---------------
The library was not found at <${LIBPRQLR_PATH}>.
Trying to download pre-built binary from the Internet.
$("${R_HOME}/bin${R_ARCH_BIN}/Rscript" "tools/prep-lib.R" || echo "Failed to download pre-built binary.")
$("${R_HOME}/bin${R_ARCH_BIN}/Rscript" "tools/prep-lib.R" && echo "Done!" || echo "Failed to download pre-built binary.")
------------------------------------------------------------------
EOF
fi
Expand All @@ -69,7 +69,7 @@ EOF
------------------------ [COPYING BINARY] ------------------------
Copying <${LIBPRQLR_PATH}> to <${LIBPRQLR_DEFAULT_PATH}>.
$(mkdir -p "$(dirname "${LIBPRQLR_DEFAULT_PATH}")")
$(cp "${LIBPRQLR_PATH}" "${LIBPRQLR_DEFAULT_PATH}" || echo "Failed to copy binary.")
$(cp "${LIBPRQLR_PATH}" "${LIBPRQLR_DEFAULT_PATH}" && echo "Done!" || echo "Failed to copy binary.")
------------------------------------------------------------------
EOF
fi
Expand Down

0 comments on commit 1d56e55

Please sign in to comment.