Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 291
Javier de la Rosa Avatar asked Jan 03 '23 02:01

Javier de la Rosa


1 Answers

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.

like image 147
Jeroen de Jong Avatar answered Jan 05 '23 15:01

Jeroen de Jong