NICTA/scoobi

Program arguments starting with "scoobi" cuts the arg list short

jastice opened this issue · 0 comments

Given a most simple ScoobiApp:

object TestApp extends ScoobiApp {
  def run = println(args)
}

and executing it with:

sbt 'run-main TestApp arg0 arg1 scoobidoo arg3'

will output:

ArrayBuffer(arg0, arg1)

This will happen with any command line argument starting with "scoobi", but not if there are other characters before it (e.g. "thescoobi")