pash: swap to more portable command -v
This commit is contained in:
parent
ade92b56a7
commit
540ed1abc2
6
pash
6
pash
|
@ -62,7 +62,7 @@ pw_copy() {
|
|||
}
|
||||
|
||||
pw_list() {
|
||||
if hash tree 2>/dev/null; then
|
||||
if command -v tree 2>/dev/null; then
|
||||
tree --noreport
|
||||
|
||||
else
|
||||
|
@ -136,8 +136,8 @@ main() {
|
|||
|
||||
# Look for both 'gpg' and 'gpg2',
|
||||
# preferring 'gpg2' if it is available.
|
||||
hash gpg 2>/dev/null && gpg=gpg
|
||||
hash gpg2 2>/dev/null && gpg=gpg2
|
||||
command -v gpg 2>/dev/null && gpg=gpg
|
||||
command -v gpg2 2>/dev/null && gpg=gpg2
|
||||
|
||||
[ "$gpg" ] ||
|
||||
die "GPG not found."
|
||||
|
|
Loading…
Reference in New Issue