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

Update the h2-migration-tool for the h2-2.2.224 Version #434

Merged
merged 1 commit into from
Feb 7, 2024
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
6 changes: 3 additions & 3 deletions h2-migration-tool/migration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ esac

echo
echo "Please select the h2 version you are migrating to:"
echo "h2-2.2.220 - (1)"
echo "h2-2.2.224 - (1)"
echo "h2-2.1.210 - (2)"
read new_h2_version_choice

case $new_h2_version_choice in
1)
new_h2_version="h2-2.2.220.jar"
wget -c https://repo1.maven.org/maven2/com/h2database/h2/2.2.220/h2-2.2.220.jar || exit 1
new_h2_version="h2-2.2.224.jar"
wget -c https://repo1.maven.org/maven2/com/h2database/h2/2.2.224/h2-2.2.224.jar || exit 1
;;
2)
new_h2_version="h2-2.1.210.jar"
Expand Down
Loading