You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by sv...@apache.org on 2016/04/04 12:22:25 UTC

[2/3] brooklyn-client git commit: update invoke param description to match wording in guide

update invoke param description to match wording in guide


Project: http://git-wip-us.apache.org/repos/asf/brooklyn-client/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-client/commit/673d20c8
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-client/tree/673d20c8
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-client/diff/673d20c8

Branch: refs/heads/master
Commit: 673d20c85bb2950c0b42179caf3b7039cb59ab41
Parents: e5de98b
Author: John McCabe <jo...@johnmccabe.net>
Authored: Tue Mar 22 11:01:46 2016 +0000
Committer: John McCabe <jo...@johnmccabe.net>
Committed: Tue Mar 22 11:01:46 2016 +0000

----------------------------------------------------------------------
 commands/invoke.go | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/brooklyn-client/blob/673d20c8/commands/invoke.go
----------------------------------------------------------------------
diff --git a/commands/invoke.go b/commands/invoke.go
index 2899617..21842f8 100644
--- a/commands/invoke.go
+++ b/commands/invoke.go
@@ -74,9 +74,8 @@ func NewInvokeRestart(network *net.Network) (cmd *Restart) {
 var paramFlags = []cli.Flag{
 	cli.StringSliceFlag{
 		Name:  "param, P",
-		Usage: "Parameter and value separated by '=', e.g. -P x=y. Values can " +
-		       "be supplied via file by prefixing a file path with '@', e.g. " +
-		       "-P x=@/path/to/file.",
+		Usage: "Parameter and value separated by '=', e.g. -P x=y. If the parameter value is complex or multi-" +
+		       "lined it may be provided in a file and referenced as: '@<file>', e.g. -P x=@/path/to/file.",
 	},
 }