From abbe5eecf719e28da310ad1707f46fb0c2792643 Mon Sep 17 00:00:00 2001 From: Vincent Date: Wed, 16 Oct 2024 18:54:09 +0100 Subject: [PATCH] chore: fix GIT_TAG to the latest version in CMakeLists.txt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1109da4..750963e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ include(FetchContent) FetchContent_Declare( endstone GIT_REPOSITORY https://github.com/EndstoneMC/endstone.git - GIT_TAG main # or set to a specific version tag + GIT_TAG v0.5.4.1 # TODO: CHANGE ME to the actual version you are using ) FetchContent_MakeAvailable(endstone)