[Bamboo Cloud docs]
[Bamboo Knowledge Base]
When executing different Tasks, Bamboo attempts to tokenize value entered in Arguments field. The general rules are:
This particular string
clean install -DpartiallyQuotedArgument1="Partially Quoted Argument" 'Fully Quoted Argument'
would be tokenized as
clean install -DpartiallyQuotedArgument1="Partially Quoted Argument" 'Fully Quoted Argument'
Each line here represents a single argument that will be passed to shell.
Bamboo generally doesn't modify tokenized arguments before passing them to shell with one exception:
This particular string
clean install -DpartiallyQuotedArgument1="Partially Quoted Argument" 'Fully Quoted Argument'
would be passed to Windows shell as
clean install -DpartiallyQuotedArgument1="Partially Quoted Argument" 'Fully Quoted Argument'
but to Unix shell as
clean install -DpartiallyQuotedArgument1="Partially Quoted Argument" Fully Quoted Argument
Try this
'"Only external quotes will be stripped and double quotes will be preserved when passing this to Unix shell"'
Make sure you haven't quoted the whole contents of Arguments field:
"clean install"
You should simply delete quotes
clean install