Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitraz committed Feb 7, 2018
1 parent 48ecf14 commit f26ee69
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkg/cmd/clients.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ Run the "mobile get clients" command from this tool to get the client ID.`,
// CreateClientCmd builds the create mobileclient command
func (cc *ClientCmd) CreateClientCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "client <name> <clientType iOS|cordova|android> <appIdentifier bundleID|packageName >",
Use: "client <name> <clientType iOS|cordova|android> <appIdentifier bundleID|packageName>",
Short: "create a mobile client representation in your namespace",
Long: `create client sets up the representation of a mobile application of the specified type in your namespace.
This is used to provide a mobile client context for various actions such as creating, starting or stopping mobile client builds.
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/services.go
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ Run the "mobile get services" command from this tool to see which services are a
validInput := false
val := ""
for validInput == false {
questionFormat := "Set value for %s [default value: %s required: %v]"
questionFormat := "Set value for %s [default value: %s, required: %v]"
if v["default"] != nil {
fmt.Println(fmt.Sprintf(questionFormat, k, v["default"], requiredParam(*instParams, k)))
} else {
Expand All @@ -289,7 +289,7 @@ Run the "mobile get services" command from this tool to see which services are a
}
v["value"] = val
instParams.Properties[k] = v
fmt.Println("set value for " + k + " to : " + val)
fmt.Println(fmt.Sprintf("Value for %s set to: %s", k, val))
}
}

Expand Down

0 comments on commit f26ee69

Please sign in to comment.