From 1d56e5581f54582b632ca7f8f64160443025ea73 Mon Sep 17 00:00:00 2001 From: eitsupi Date: Thu, 19 Sep 2024 13:56:21 +0000 Subject: [PATCH] chore: tweak message --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 1d96c76..fed3d95 100755 --- a/configure +++ b/configure @@ -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 @@ -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