language/haskell: wrap options in parens

Fixes:
language/haskell.rb:65: warning: `*' interpreted as argument prefix
This commit is contained in:
Dominyk Tiller 2015-12-30 21:05:44 +00:00
parent abd4c699d1
commit fff140cb9d

View File

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