shims/mac/super/pod2man: repair style

This commit is contained in:
hyuraku 2021-04-18 19:43:46 +09:00
parent 7f33314e64
commit 4e3003b841

View File

@ -1,8 +1,10 @@
#!/bin/bash
# HOMEBREW_PREFIX is set by bin/brew
# shellcheck disable=SC2154
POD2MAN="$(type -P pod2man5.18 ||
type -P pod2man5.16 ||
type -P pod2man5.12 ||
type -P "$HOMEBREW_PREFIX/opt/pod2man/bin/pod2man" ||
type -P "${HOMEBREW_PREFIX}/opt/pod2man/bin/pod2man" ||
echo /usr/bin/pod2man)"
exec "$POD2MAN" "$@"
exec "${POD2MAN}" "$@"