Skip to content

Commit

Permalink
Fix shellcheck warning (#438)
Browse files Browse the repository at this point in the history
`usage` already does `exit`, so the (now removed) `exit` is deemed
unreachable
  • Loading branch information
paulo-ferraz-oliveira committed Apr 5, 2023
1 parent 368cb72 commit 20d4f7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kerl
Original file line number Diff line number Diff line change
Expand Up @@ -2604,6 +2604,6 @@ case "$1" in
esac
;;
*)
l=e stderr "unknown command: $1"; usage; exit 1
l=e stderr "unknown command: $1"; usage
;;
esac

0 comments on commit 20d4f7f

Please sign in to comment.