diff --git a/Dockerfile.ubuntu-2204 b/Dockerfile.ubuntu-2204 index 7c4a09d..6ae0bb5 100644 --- a/Dockerfile.ubuntu-2204 +++ b/Dockerfile.ubuntu-2204 @@ -106,11 +106,11 @@ RUN echo "**** Get LinuxGSM Modules ****" \ && git clone --filter=blob:none --no-checkout --sparse https://github.com/GameServerManagers/LinuxGSM.git \ && cd LinuxGSM \ && git sparse-checkout set --cone \ - && git sparse-checkout set lgsm/functions \ + && git sparse-checkout set lgsm/modules \ && git checkout ${LGSM_GITHUBBRANCH} \ - && mkdir -p /linuxgsm/lgsm/functions \ - && mv lgsm/functions/* /linuxgsm/lgsm/functions \ - && chmod +x /linuxgsm/lgsm/functions/* \ + && mkdir -p /linuxgsm/lgsm/modules \ + && mv lgsm/modules/* /linuxgsm/lgsm/modules \ + && chmod +x /linuxgsm/lgsm/modules/* \ && rm -rf /linuxgsm/LinuxGSM \ && chown -R $USERNAME:$USERNAME /linuxgsm diff --git a/entrypoint-user.sh b/entrypoint-user.sh index bff48bc..ec66727 100755 --- a/entrypoint-user.sh +++ b/entrypoint-user.sh @@ -10,10 +10,10 @@ fi # Clear functions directory if not master if [ "${LGSM_GITHUBBRANCH}" != "master" ]; then echo -e "not master branch, clearing functions directory" - rm -rf /linuxgsm/lgsm/functions/* -elif [ -d "/linuxgsm/lgsm/functions" ]; then + rm -rf /linuxgsm/lgsm/modules/* +elif [ -d "/linuxgsm/lgsm/modules" ]; then echo -e "ensure all functions are executable" - chmod +x /linuxgsm/lgsm/functions/* + chmod +x /linuxgsm/lgsm/modules/* fi # Install game server