We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 299b548 commit 6c787e4Copy full SHA for 6c787e4
build.gradle
@@ -39,8 +39,6 @@ dependencies {
39
compile group: 'ch.qos.logback', name: 'logback-classic', version: logbackVersion
40
}
41
42
-run {
43
- systemProperties System.getProperties()
44
-
45
- args System.getProperty("exec.args").split()
+if (System.getProperty("exec.args") != null) {
+ args System.getProperty("exec.args").split()
46
0 commit comments