You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
595 B
Bash
21 lines
595 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
case "$1" in
|
|
java8)
|
|
echo "https://github.com/bell-sw/Liberica/releases/download/8u382+6/bellsoft-jdk8u382+6-linux-amd64.tar.gz"
|
|
;;
|
|
java11)
|
|
echo "https://github.com/bell-sw/Liberica/releases/download/11.0.20.1+1/bellsoft-jdk11.0.20.1+1-linux-amd64.tar.gz"
|
|
;;
|
|
java17)
|
|
echo "https://github.com/bell-sw/Liberica/releases/download/17.0.8.1+1/bellsoft-jdk17.0.8.1+1-linux-amd64.tar.gz"
|
|
;;
|
|
java20)
|
|
echo "https://github.com/bell-sw/Liberica/releases/download/20.0.2+10/bellsoft-jdk20.0.2+10-linux-amd64.tar.gz"
|
|
;;
|
|
*)
|
|
echo $"Unknown java version"
|
|
exit 1
|
|
esac
|