We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Use context.args which is a Seq[String] containing the command line arguments you gave to the task.
context.args
Seq[String]
cbt foo a b c d e with def foo = context.args.mkString(",") will print a,b,c,d,e.
cbt foo a b c d e
def foo = context.args.mkString(",")
a,b,c,d,e
In the future we may support typed access.