Commit d686a23b by Michael DeHaan

Merge pull request #6554 from vyrak/keep-head-state

homebrew: state=head includes --HEAD
parents 4045b793 f5289dee
......@@ -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':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment