Closed jdeanwallace closed 3 months ago
Resolves https://github.com/tiny-pilot/tinypilot/issues/1780
This PR align our bash scripts with the Google Shell Style Guide:
For preference, don’t use [[ … ]] at all for numeric comparisons, use (( … )) instead.
[[ … ]]
(( … ))
Notes:
[[ -ne ]]
(( != ))
[[ == ]]
(( == ))
⏳ @jotaen4tinypilot please review this Pull Request
Resolves https://github.com/tiny-pilot/tinypilot/issues/1780
This PR align our bash scripts with the Google Shell Style Guide:
Notes:
[[ -ne ]]
with(( != ))
[[ == ]]
with(( == ))