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 a2e529b commit 72792b8Copy full SHA for 72792b8
backend/native/build.gradle.kts
@@ -163,4 +163,11 @@ tasks {
163
164
jibDockerBuild { dependsOn(prepareJib) }
165
// publish { finalizedBy(jibDockerBuild) }
166
+
167
+ // Pass arguments to run task : runReleaseExecutableMacosArm64 -PrunArgs="blah blah"
168
+ withType<Exec>().configureEach {
169
+ val arguments = providers.gradleProperty("runArgs")
170
+ argumentProviders.add(
171
+ CommandLineArgumentProvider { arguments.orNull?.split(" ") ?: emptyList() })
172
+ }
173
}
0 commit comments