You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
336 B
14 lines
336 B
#!/bin/bash |
|
set -e |
|
|
|
case "$1" in |
|
java17) |
|
echo "https://github.com/bell-sw/Liberica/releases/download/17.0.9+11/bellsoft-jdk17.0.9+11-linux-amd64.tar.gz" |
|
;; |
|
java20) |
|
echo "https://github.com/bell-sw/Liberica/releases/download/20.0.1+10/bellsoft-jdk20.0.1+10-linux-amd64.tar.gz" |
|
;; |
|
*) |
|
echo $"Unknown java version" |
|
exit 1 |
|
esac
|
|
|