/**
* Splits the given command string into arguments and adds them to the builder
* @param commandString to split into multiple parts and add to the list of commands
* @return builder
* @since 3.2
*/
public ExternalProcessBuilder commandFromString(@NotNull String commandString)
{
final String[] commands = Commandline.translateCommandline(commandString);
if (commands != null && commands.length > 0)
{
this.command.addAll(Arrays.asList(commands));
}
return this;
}
- is detailed by
-
BAM-8639 Update Bamboo Plugin SDK default project to simple task
- Closed