Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added misc fixes to installer script #2169

Merged
merged 1 commit into from
Jan 20, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions installer_scripts/install-yb-voyager
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ ubuntu_main() {
fi

output "Installing packages."
sudo apt-get -y install wget 1>&2
sudo apt-get -y install wget make gcc 1>&2
sudo apt-get -y install sqlite3 1>&2
install_golang linux
ubuntu_install_postgres
Expand Down Expand Up @@ -318,7 +318,7 @@ check_java() {
then
output "Found sufficient java version = ${JAVA_COMPLETE_VERSION}"
else
output "ERROR: Java not found or insuffiencient version ${JAVA_COMPLETE_VERSION}. Please install java>=${MIN_REQUIRED_MAJOR_VERSION}"
echo -e "\e[31mERROR: Java not found or insufficient version ${JAVA_COMPLETE_VERSION}. Please install java>=${MIN_REQUIRED_MAJOR_VERSION}\e[0m"
exit 1;
fi
}
Expand Down