mirror of
https://gitee.com/dcren/initializr.git
synced 2025-04-05 17:38:06 +08:00
12 lines
209 B
Bash
Executable File
12 lines
209 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
case "$1" in
|
|
java17)
|
|
echo "https://github.com/bell-sw/Liberica/releases/download/17.0.7+7/bellsoft-jdk17.0.7+7-linux-amd64.tar.gz"
|
|
;;
|
|
*)
|
|
echo $"Unknown java version"
|
|
exit 1
|
|
esac
|