Browse Source

feat: add symlink to serverfile in /app

pull/44/head
Daniel Gibbs 1 year ago
parent
commit
e14a05d673
No known key found for this signature in database GPG Key ID: 2076B128385E8C55
  1. 8
      entrypoint-user.sh

8
entrypoint-user.sh

@ -28,6 +28,14 @@ if [ ! -d "/app/lgsm/config-lgsm" ]; then
ln -s "${LGSM_CONFIG}" "/app/lgsm/config-lgsm"
fi
# Symlink LGSM_SERVERCFG to /app/serverfiles
if [ ! -d "/app/serverfiles" ]; then
echo -e ""
echo -e "creating symlink for ${LGSM_SERVERCFG}"
echo -e "================================="
ln -s "${LGSM_SERVERCFG}" "/app/serverfiles"
fi
# Clear modules directory if not master
if [ "${LGSM_GITHUBBRANCH}" != "master" ]; then

Loading…
Cancel
Save