mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #2253 from jcftang/cowsay-osx
Cowsay on OSX macports
This commit is contained in:
commit
d90ec4e117
1 changed files with 3 additions and 0 deletions
|
@ -33,6 +33,9 @@ elif os.path.exists("/usr/games/cowsay"):
|
||||||
elif os.path.exists("/usr/local/bin/cowsay"):
|
elif os.path.exists("/usr/local/bin/cowsay"):
|
||||||
# BSD path for cowsay
|
# BSD path for cowsay
|
||||||
cowsay = "/usr/local/bin/cowsay"
|
cowsay = "/usr/local/bin/cowsay"
|
||||||
|
elif os.path.exists("/opt/local/bin/cowsay"):
|
||||||
|
# MacPorts path for cowsay
|
||||||
|
cowsay = "/opt/local/bin/cowsay"
|
||||||
|
|
||||||
|
|
||||||
# ****************************************************************************
|
# ****************************************************************************
|
||||||
|
|
Loading…
Reference in a new issue