diff options
| author | Martin Afanasjew | 2016-08-07 12:54:56 +0200 |
|---|---|---|
| committer | Martin Afanasjew | 2016-08-08 16:00:12 +0200 |
| commit | 85c0b594ad89e876eae6a94141a228be0f5982b4 (patch) | |
| tree | aabb6508853719a9bcf7c7c0aeba9faa71a56a19 /Library | |
| parent | 8e180a85b8dc7d5cf0f202e120f3452be61f3727 (diff) | |
| download | brew-85c0b594ad89e876eae6a94141a228be0f5982b4.tar.bz2 | |
shims/pod2man: fix style inconsistencies
Diffstat (limited to 'Library')
| -rwxr-xr-x | Library/Homebrew/shims/super/pod2man | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Library/Homebrew/shims/super/pod2man b/Library/Homebrew/shims/super/pod2man index 8e83f4bcb..90145766f 100755 --- a/Library/Homebrew/shims/super/pod2man +++ b/Library/Homebrew/shims/super/pod2man @@ -1,3 +1,8 @@ #!/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" "$@" |
