From eb131128f64ef609e5c30dc23ce0cf7c36faf433 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 18 Jan 2023 15:44:00 +0000 Subject: [PATCH] chore: linting --- .gitignore | 3 ++- .prettierrc.json | 3 +++ README.md | 2 ++ entrypoint.sh | 2 +- 4 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 .prettierrc.json diff --git a/.gitignore b/.gitignore index a2dd3b2..7e9b385 100644 --- a/.gitignore +++ b/.gitignore @@ -20,4 +20,5 @@ bundles/ .git/ vendor/pkg/ pyenv -Vagrantfile \ No newline at end of file +Vagrantfile +/node_modules diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 0000000..02d542d --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1,3 @@ +{ + "plugins": ["prettier-plugin-sh"] +} diff --git a/README.md b/README.md index 967a083..8c2fb50 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # LinuxGSM Docker Image + > Note this is the base LinuxGSM image. For full game servers use docker-gameserver +

LinuxGSM
diff --git a/entrypoint.sh b/entrypoint.sh index e7cbe64..97653b2 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -42,7 +42,7 @@ echo -e "" echo -e "Check Permissions" echo -e "=================================" echo -e "setting UID to ${UID}" -usermod -u ${UID} linuxgsm >/dev/null 2>&1 +usermod -u ${UID} linuxgsm > /dev/null 2>&1 echo -e "setting GID to ${GID}" groupmod -g ${GID} linuxgsm echo -e "updating permissions"