fixed condition checking for the existence of the playbook not in the

correct block of code
This commit is contained in:
aminnairi
2024-01-04 12:27:58 +01:00
parent 9304a0a0ed
commit 6389c8b30f
+3 -3
View File
@@ -53,12 +53,12 @@ then
read -r -p "Choice: " index
choosen_playbook_path=${available_playbook_paths[$index - 1]}
fi
if [[ -z $choosen_playbook_path ]]
then
if [[ -z $choosen_playbook_path ]]
then
echo "Error: invalid index."
exit $ERROR_BECAUSE_PLAYBOOK_INVALID_OR_NOT_FOUND
fi
fi
if [[ ! -f $choosen_playbook_path ]]