1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

homebrew_tap: fixes #40853 (#40863)

This commit is contained in:
Daniel Jaouen 2018-06-01 11:43:04 -04:00 committed by ansibot
parent 1cec3c8daf
commit e90265e716

View file

@ -111,7 +111,7 @@ def add_tap(module, brew_path, tap, url=None):
tap,
url,
])
if already_tapped(module, brew_path, tap):
if rc == 0:
changed = True
msg = 'successfully tapped: %s' % tap
else: