mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Cowsay on OSX macports
This commit is contained in:
parent
f5ba0c61af
commit
81a34c2d1d
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"):
|
||||
# BSD path for 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