Conditional Bash Step in Attune

The following code can be used to create a conditional step in attune, that will only execute if an Attune variable is literally true.

1
2
3
4
5
6
7
if {attuneCheckVariable}
then
    echo "Check passed, will execute code"
    # code to execute here
else
    echo "Check failed, won't execute code"
fi