prevent state from changing from head to installed
allows for --HEAD to be included in brew install command
This commit is contained in:
parent
950c0ebce6
commit
5549c2cdd0
1 changed files with 3 additions and 1 deletions
|
@ -756,8 +756,10 @@ def main():
|
||||||
path = ['/usr/local/bin']
|
path = ['/usr/local/bin']
|
||||||
|
|
||||||
state = p['state']
|
state = p['state']
|
||||||
if state in ('present', 'installed', 'head'):
|
if state in ('present', 'installed'):
|
||||||
state = 'installed'
|
state = 'installed'
|
||||||
|
if state in ('head'):
|
||||||
|
state = 'head'
|
||||||
if state in ('latest', 'upgraded'):
|
if state in ('latest', 'upgraded'):
|
||||||
state = 'upgraded'
|
state = 'upgraded'
|
||||||
if state == 'linked':
|
if state == 'linked':
|
||||||
|
|
Loading…
Reference in a new issue