andrewgaul commented on this pull request.
> @@ -254,7 +254,12 @@ private void run(final CommandProcessorImpl
> commandProcessor, String[] args, fin
if (i > 0) {
sb.append(" ");
}
- sb.append(args[i]);
+ if (args[i].contains(" ")) {
+ // quote arguments with spaces
+ sb.append("\"").append(args[i]).append("\"");
This addresses my symptoms but how should this handle quotes? The felix
documentation does not discuss this.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-cli/pull/34#pullrequestreview-5750979