prevent state from changing from head to installed

allows for --HEAD to be included in brew install command
pull/6554/head
vyrak bunleang 11 years ago
parent 9da26da335
commit f5289deee7

@ -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':

Loading…
Cancel
Save