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 -

java - Plugin org.apache.maven.plugins:maven-install-plugin:2.4 or one of its dependencies could not be resolved -

Save and close a word document by giving a name in R -