v1: fix missing script not erroring correctly
parent
7c56b3fa03
commit
3731d7f7e3
4
v1.sh
4
v1.sh
|
@ -131,7 +131,9 @@ log_path="$log_base_dir/$instance.txt"
|
|||
if [[ -f "$script_path/$event.sh" ]]; then
|
||||
script_path="$script_path/$event.sh"
|
||||
elif [[ -f "$script_path/default.sh" ]]; then
|
||||
$script_path"$script_path/default.sh"
|
||||
script_path="$script_path/default.sh"
|
||||
else
|
||||
script_path=""
|
||||
fi
|
||||
|
||||
if [[ ! -z $script_path ]]; then
|
||||
|
|
Reference in New Issue