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 committed by AsamK
parent fbbd194e40
commit 70c810ff17

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