We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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.