Add Leaf support (#3470)

Co-authored-by: Geoff Bourne <itzgeoff@gmail.com>
This commit is contained in:
Ryan Kitty
2025-06-01 17:49:54 -05:00
committed by GitHub
parent 85648d5916
commit c11d2a0ab2
3 changed files with 73 additions and 1 deletions

View File

@@ -278,6 +278,10 @@ case "${TYPE^^}" in
exec "${SCRIPTS:-/}start-deployCrucible" "$@"
;;
LEAF)
exec "${SCRIPTS:-/}start-deployLeaf" "$@"
;;
*)
logError "Invalid TYPE: '$TYPE'"
logError "Must be: VANILLA, FORGE, BUKKIT, SPIGOT, PAPER, FOLIA, PURPUR, FABRIC, QUILT,"
@@ -286,4 +290,4 @@ case "${TYPE^^}" in
exit 1
;;
esac
esac