From eb9ea59fe5a89cf6c140b21c721ce5e4ae58c29f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Sj=C3=B6gren?= Date: Thu, 25 Oct 2018 12:05:48 +0200 Subject: [PATCH] load dependencies in correct order MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Thomas Sjögren --- docker-bench-security.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docker-bench-security.sh b/docker-bench-security.sh index 08e59b6..7e69de0 100755 --- a/docker-bench-security.sh +++ b/docker-bench-security.sh @@ -9,6 +9,10 @@ version='1.3.4' +# Load dependencies +. ./functions_lib.sh +. ./helper_lib.sh + # Setup the paths this_path=$(abspath "$0") ## Path of this file including filename myname=$(basename "${this_path}") ## file name of this script. @@ -66,9 +70,7 @@ if [ -z "$logger" ]; then logger="${myname}.log" fi -# Load dependencies -. ./functions_lib.sh -. ./helper_lib.sh +# Load output formating . ./output_lib.sh yell_info