Skip to content

Commit

Permalink
Fix missing return value
Browse files Browse the repository at this point in the history
  • Loading branch information
laenion committed Mar 28, 2019
1 parent def2960 commit b7f4808
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/crio.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
run_checks() {
# Check first if it is installed:
rpm -q --quiet crio
test $? -ne && return
test $? -ne 0 && return

# ignore if crio is not enabled.
systemctl is-enabled -q crio
Expand Down

0 comments on commit b7f4808

Please sign in to comment.