mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 08:13:08 +00:00
prevent state from changing from head to installed
allows for --HEAD to be included in brew install command
This commit is contained in:
@@ -756,8 +756,10 @@ def main():
|
||||
path = ['/usr/local/bin']
|
||||
|
||||
state = p['state']
|
||||
if state in ('present', 'installed', 'head'):
|
||||
if state in ('present', 'installed'):
|
||||
state = 'installed'
|
||||
if state in ('head'):
|
||||
state = 'head'
|
||||
if state in ('latest', 'upgraded'):
|
||||
state = 'upgraded'
|
||||
if state == 'linked':
|
||||
|
||||
Reference in New Issue
Block a user