Commit 20f622d0 by John Jarvis

only add tags if task_tags is not null

parent a38a3b65
......@@ -38,7 +38,7 @@ ansible_limit+="tag_Name_${environment_tag}-${deployment_tag}-${play_tag}"
ansible_task_tags=""
if [[ -z "$task_tags" ]]; then
if [[ ! -z "$task_tags" ]]; then
ansible_task_tags+="--tags $task_tags"
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment