Reputation: 237
I am using a SBT Task to run my code and I want to send some arguments.
Using SBT shell, run foo bar
works perfectly, but I can't make it work using the SBT Task. Any idea?
Upvotes: 4
Views: 1385
Reputation: 136
I had the same problem and tried to put the command in quotes. That worked!
So, just try to put "run foo bar" with quotes in the Tasks field of the Run/Debug Configuration dialog.
Upvotes: 11