We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Turns out the Parser::AST::Node tree structure is different for
Parser::AST::Node
bottle do root_url "whatever" end
vs
bottle do foobar root_url "whatever" end
One is like
(block (send nil :bottle) (args) (send nil :root_url (str "https://dl.bintray.com/easoncxz/homebrew-bottles")))
While the other is like
(block (send nil :bottle) (args) (begin (send nil :cellar (sym :any_skip_relocation)) (send nil :rebuild (int 1)) (send nil :root_url (str "https://dl.bintray.com/easoncxz/homebrew-bottles")) (send nil :sha256 (hash (pair (str "4be7efbbfb251b46a860080b753bd280b36726e1d8b7815893e35354ae33f730") (sym :yosemite))))))
Notice that an extra layer of (:begin ...) appears if there are more than one expression.
(:begin ...)
The text was updated successfully, but these errors were encountered:
Add would-fail tests for #14
20d33bd
Work around bug in easoncxz/homebrew-automation#14
d4109b8
No branches or pull requests
Turns out the
Parser::AST::Node
tree structure is different forvs
One is like
While the other is like
Notice that an extra layer of
(:begin ...)
appears if there are more than one expression.The text was updated successfully, but these errors were encountered: