mirror of
https://github.com/docker/docker-bench-security.git
synced 2025-01-19 00:32:34 +01:00
load dependencies in correct order
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com>
This commit is contained in:
parent
1647e47976
commit
eb9ea59fe5
1 changed files with 5 additions and 3 deletions
|
@ -9,6 +9,10 @@
|
||||||
|
|
||||||
version='1.3.4'
|
version='1.3.4'
|
||||||
|
|
||||||
|
# Load dependencies
|
||||||
|
. ./functions_lib.sh
|
||||||
|
. ./helper_lib.sh
|
||||||
|
|
||||||
# Setup the paths
|
# Setup the paths
|
||||||
this_path=$(abspath "$0") ## Path of this file including filename
|
this_path=$(abspath "$0") ## Path of this file including filename
|
||||||
myname=$(basename "${this_path}") ## file name of this script.
|
myname=$(basename "${this_path}") ## file name of this script.
|
||||||
|
@ -66,9 +70,7 @@ if [ -z "$logger" ]; then
|
||||||
logger="${myname}.log"
|
logger="${myname}.log"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Load dependencies
|
# Load output formating
|
||||||
. ./functions_lib.sh
|
|
||||||
. ./helper_lib.sh
|
|
||||||
. ./output_lib.sh
|
. ./output_lib.sh
|
||||||
|
|
||||||
yell_info
|
yell_info
|
||||||
|
|
Loading…
Reference in a new issue