You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
More generally, the tasks should provide a way to specify the command line elements by elements and take care of escaping/quoting, delegating that job to ProcessBuilder.
Using command as following:
command "java - jar \"/my/path that/contains/spaces.jar\""
Will fail since we do:
def builder = new ProcessBuilder(command.split(' '))
The text was updated successfully, but these errors were encountered: