Skip to content

Commit

Permalink
Rely on echo putting a newline at the end automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvipanda committed Nov 2, 2023
1 parent fbb3ac8 commit bbcba1e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/install_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ if [ "${UBUNTU_CODENAME}" == "focal" ]; then
fi

# Check that python and python3 point to correct places
echo -e "Check python and python3 executables point to the correct place...\n"
echo -e "python -> $(which python)\n"
echo -e "python3 -> $(which python3)\n"
echo "Check python and python3 executables point to the correct place..."
echo "python -> $(which python)"
echo "python3 -> $(which python3)"

# Check Python version
echo -e "Check the Python to use with reticulate...\n"
Expand Down

0 comments on commit bbcba1e

Please sign in to comment.