Skip to content

Commit

Permalink
Merge pull request #26 from markjreed/bugfix/remove-which-dependency
Browse files Browse the repository at this point in the history
fix: remove dependency on `which` binary
  • Loading branch information
ouest committed Jul 27, 2023
2 parents f1b2040 + 344e5b1 commit 2b4609b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/list-all
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ list_all() {
fi

$(perl_install_bin) $list_arg |
if which tac >/dev/null; then
if type tac >/dev/null; then
tac
else
tail -r
Expand Down

0 comments on commit 2b4609b

Please sign in to comment.