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 16, 2024
1 parent 3d972c1 commit 5af4328
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 @@ -69,7 +69,7 @@ check_bin_lib() {
echo "---------------------- [LIBRARY BINARY FOUND] ----------------------"
echo "The library was found at <${LIBR_POLARS_PATH}>. No need to build it."
echo ""
echo "Note: rustc version: $(rustc -V || echo 'Not found')"
echo "Note: rustc version: $(command -v rustc >/dev/null && rustc -V || echo 'Not found')"
echo "--------------------------------------------------------------------"
echo ""
sed -e "s|@RUST_TARGET@||" -e "s|@ADDITIONAL_PKG_LIBS_FLAG@|${ADDITIONAL_PKG_LIBS_FLAG}|" src/Makevars.in >src/Makevars
Expand All @@ -90,7 +90,7 @@ check_bin_lib() {
echo "but was found at <${LIBR_POLARS_DEFAULT_PATH}>."
echo "No need to build it."
echo ""
echo "Note: rustc version: $(rustc -V || echo 'Not found')"
echo "Note: rustc version: $(command -v rustc >/dev/null && rustc -V || echo 'Not found')"
echo "--------------------------------------------------------------------"
echo ""
sed -e "s|@RUST_TARGET@||" -e "s|@ADDITIONAL_PKG_LIBS_FLAG@|${ADDITIONAL_PKG_LIBS_FLAG}|" src/Makevars.in >src/Makevars
Expand Down

0 comments on commit 5af4328

Please sign in to comment.