Javier de la Rosa
Javier de la Rosa

Reputation: 237

Intellij - Send arguments using SBT plugin

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

Answers (1)

Jeroen de Jong
Jeroen de Jong

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

Related Questions