Skip to content
Snippets Groups Projects
Commit fff140cb authored by Dominyk Tiller's avatar Dominyk Tiller
Browse files

language/haskell: wrap options in parens

Fixes:
language/haskell.rb:65: warning: `*' interpreted as argument prefix
parent abd4c699
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,7 @@ module Language
options = if args[-1].kind_of?(Hash) then args.pop else {} end
cabal_sandbox do
cabal_install_tools *options[:using] if options[:using]
cabal_install_tools(*options[:using]) if options[:using]
# install dependencies in the sandbox
cabal_install "--only-dependencies", *args
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment