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.

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