rustic / com.osm.gradle.plugins.wrapper / RustToolBase / run

run

protected fun run(args: List<String>): String
protected fun run(vararg args: String): String

Run external applications synchronously. Wait for the executed application to complete.

Parameters

args - Arguments to pass to the external application. Options must be passed as items in a list, not separated by spaces.

protected fun run(commands: List<String>, options: OptionBuilder): String

Run external applications synchronously. Wait for the executed application to complete.

Parameters

commands - Arguments to pass to the external application. Options must be passed as items in a list, not separated by spaces.

options - Sets the builder for creating command.

protected fun run(command: String, options: OptionBuilder): String

Run external applications synchronously. Wait for the executed application to complete.

Parameters

command - Arguments to pass to the external application. Options must be passed as items in a list, not separated by spaces.

options - Sets the builder for creating command.