Skip to content

Commit

Permalink
Update OrgScore2_1_1.sh
Browse files Browse the repository at this point in the history
Copy-paste error fixed
  • Loading branch information
gregneagle authored Oct 7, 2021
1 parent 789e84f commit 5f376e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Fragments/OrgScores/OrgScore2_1_1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if [[ "${auditResult}" == "1" ]]; then
if [[ "$bluetoothEnabled" == 0 ]]; then
# bluetooth is off: passes
result="Passed"
elif [[ "$bluetoothEnabled" == 1 ]] && [[ "$connectable"-gt 0 ]]; then
elif [[ "$bluetoothEnabled" == 1 ]] && [[ "$connectable" -gt 0 ]]; then
# bluetooth is on, and there are paired devices: passes
result="Passed"
else
Expand Down

0 comments on commit 5f376e0

Please sign in to comment.