From 80b13ac739b4daaa27711417b2f5e8939ca336f2 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 19:34:13 +0000 Subject: [PATCH] tests --- tests/tests_shellcheck.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tests/tests_shellcheck.sh b/tests/tests_shellcheck.sh index c088f7609..c3f5fbda0 100644 --- a/tests/tests_shellcheck.sh +++ b/tests/tests_shellcheck.sh @@ -2,11 +2,10 @@ # Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs # License: MIT License, Copyright (c) 2017 Daniel Gibbs -# Purpose: TravisCI Tests: Teamspeak 3 | Linux Game Server Management Script +# Purpose: TravisCI Tests: Shellcheck | Linux Game Server Management Script # Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors # Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com - -ls -al -shellcheck --shell=bash --exclude=SC2154,SC2034 lgsm/functions/* \ No newline at end of file +find . -type f -name "*.sh" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; +find . -type f -name "*.cfg" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \;