Short comment to explain how to pass arguments to main application

This commit is contained in:
Riamse 2018-05-15 22:29:04 -04:00
parent 58b762e575
commit 0c973e192f

View file

@ -38,6 +38,8 @@ jar {
run {
if (project.hasProperty("appArgs")) {
// allow passing command-line arguments to the main application e.g.:
// $ gradle run -PappArgs="['-u', '+...', 'daemon', '--json']"
args Eval.me(appArgs)
}
}