-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeneric_shell_toolbox.sh
executable file
·47 lines (35 loc) · 1.24 KB
/
generic_shell_toolbox.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
function verify_env_file(){
# checks if '.env' file exists, is so source it, if not echo an error message
script_dir=$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")
if [ -f "${script_dir}/.env" ]; then
source "${script_dir}/.env"
else
echo "Error .env '${script_dir}/.env' file does not exist."
return 1
fi
}
function source_core(){
source "${GENERIC_SHELL_TOOLBOX_LOCATION}/shell_utils/colored_shell.sh"
source "${GENERIC_SHELL_TOOLBOX_LOCATION}/enabling.sh"
}
function source_toolbox(){
source "${GENERIC_SHELL_TOOLBOX_LOCATION}/shell_utils/utils_source.sh"
source "${GENERIC_SHELL_TOOLBOX_LOCATION}/shell_addons/addons_source.sh"
}
function source_extensions(){
source "${GENERIC_SHELL_TOOLBOX_LOCATION}/.extensions/extensions_source.sh"
}
gst_main(){
# script_dir=$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")
# enable_toolbox $script_dir
# select command between 'activate' and 'deactivate'
verify_env_file
source_core
# if TOOLBOX_ENABLED is set to 'true' source the rest of the toolbox
if [ "${TOOLBOX_ENABLED}" == "true" ]; then
source_toolbox
source_extensions
log_info "[GST] ToolBox enabled"
fi
}
gst_main # Issue #5