2023-11-23 09:52:16 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source $BLUEPRINT__FOLDER/.blueprint/lib/bash_colors.sh
|
|
|
|
|
2023-11-24 06:14:48 -05:00
|
|
|
function throwError {
|
2023-11-23 09:52:16 -05:00
|
|
|
if [[ $1 == "cdMissingDirectory" ]]; then err="Tried to navigate to a directory that does not exist, halting process."; fi
|
2023-11-23 09:59:30 -05:00
|
|
|
if [[ $1 == "confymlNotFound" ]]; then err="Could not find a conf.yml file."; fi
|
2023-11-23 09:52:16 -05:00
|
|
|
|
2023-11-23 09:59:30 -05:00
|
|
|
if [[ $err == "" ]]; then err="$1"; fi
|
2023-11-23 09:52:16 -05:00
|
|
|
log_red "[FATAL] $err"
|
|
|
|
return 1
|
|
|
|
}
|