Skip to content
Snippets Groups Projects
Commit 85c0b594 authored by Martin Afanasjew's avatar Martin Afanasjew
Browse files

shims/pod2man: fix style inconsistencies

parent 8e180a85
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
POD2MAN=$(/usr/bin/which pod2man5.18 || /usr/bin/which pod2man5.16 || /usr/bin/which pod2man5.12 || /usr/bin/which $HOMEBREW_PREFIX/opt/pod2man/bin/pod2man || echo /usr/bin/pod2man)
exec $POD2MAN "$@"
POD2MAN="$(/usr/bin/which pod2man5.18 ||
/usr/bin/which pod2man5.16 ||
/usr/bin/which pod2man5.12 ||
/usr/bin/which "$HOMEBREW_PREFIX/opt/pod2man/bin/pod2man" ||
echo /usr/bin/pod2man)"
exec "$POD2MAN" "$@"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment