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
Dependencies don't receive arguments. To reproduce:
sam.cr
task "t1", ["t2"] do |t, args| puts "t1 args.raw: #{args.raw}" puts "t1 args.named: #{args.named}" # t.invoke("increase_decrease_capacity", args) end task "t2" do |_, args| puts "t2 args.raw: #{args.raw}" puts "t2 args.named: #{args.named}" end # ...
At the cli:
crystal src/sam.cr t1 arg1 arg2=3 arg4
You'll get empty arrays and hashes
The text was updated successfully, but these errors were encountered:
Merge pull request #12 from vulk/master
4d920cf
#/issues/11 Dependencies don't receive arguments
No branches or pull requests
Dependencies don't receive arguments. To reproduce:
sam.cr
At the cli:
You'll get empty arrays and hashes
The text was updated successfully, but these errors were encountered: