scala - What is the first semicolon in `addCommandAlias` method used for in SBT? -


for example, have write alias this:

addcommandalias("make-idea", ";updateclassifiers; updatesbtclassifiers; gen-idea sbt-classifiers") 

instead of

addcommandalias("make-idea", "updateclassifiers; updatesbtclassifiers; gen-idea sbt-classifiers") 

if skip first semicolon, sbt complain.. have ideas first ; in second argument of addcommandalias do?

this sbt's syntax specify multiple commands. normal sbt cli behavior , not specific addcommandalias.

the same happens in sbt shell:

sbt> updateclassifiers; updatesbtclassifiers; gen-idea sbt-classifiers [error] expected id character // etc.  sbt> ; updateclassifiers; updatesbtclassifiers; gen-idea sbt-classifiers // expected 

Comments

Popular posts from this blog

java - Unable to make sub reports with Jasper -

scala - play framework: Modules were resolved with conflicting cross-version suffixes -

Passing Variables from AngelScript to C++ -