attilaoroszdev/lazyadmin

Straighten out all boolean checks

Opened this issue · 0 comments

  • Convert all unneccessary if [[ $var=="true" ]]; then checks to simple if $var; then.
  • This also means all boolean variables will need initial values, either true or false
  • Remove quotation marks from around boolean values everywhere (i.e. "false" --> false and "true" -- > true