NICTA / scoobi

A Scala productivity framework for Hadoop.
http://nicta.github.com/scoobi/
482 stars 97 forks source link

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

Closed jastice closed 11 years ago

jastice commented 11 years ago

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")