fix cli
This commit is contained in:
parent
f3309a5e21
commit
86ba7a0aef
|
@ -1,8 +1,8 @@
|
||||||
hash: d127a34fbdc647df727f89190f0cfa8b658627ccdf8fb497c598e441a03dc1f0
|
hash: 7bade7c00b648e1da872c366bddaf5fd79edb0b33b68a552e40d1856932f06da
|
||||||
updated: 2016-07-12T16:17:37.755334805+02:00
|
updated: 2016-07-12T22:45:49.351419881+02:00
|
||||||
imports:
|
imports:
|
||||||
- name: gopkg.in/urfave/cli.v2
|
- name: gopkg.in/urfave/cli.v2
|
||||||
version: 1efa31f08b9333f1bd4882d61f9d668a70cd902e
|
version: 2b959bd8919d1110df44ec9a839e25a739906c3c
|
||||||
- name: gopkg.in/yaml.v2
|
- name: gopkg.in/yaml.v2
|
||||||
version: a83829b6f1293c91addabc89d0571c246397bbf4
|
version: a83829b6f1293c91addabc89d0571c246397bbf4
|
||||||
devImports: []
|
devImports: []
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
package: github.com/tockins/realize
|
package: github.com/tockins/realize
|
||||||
import:
|
import:
|
||||||
- package: gopkg.in/urfave/cli.v2
|
- package: gopkg.in/urfave/cli.v2
|
||||||
version: ^1.18.0
|
|
||||||
- package: gopkg.in/yaml.v2
|
- package: gopkg.in/yaml.v2
|
||||||
|
|
9
main.go
9
main.go
|
@ -1,10 +1,10 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/tockins/realize/realize"
|
|
||||||
"gopkg.in/urfave/cli.v2"
|
|
||||||
"fmt"
|
|
||||||
"os"
|
"os"
|
||||||
|
"fmt"
|
||||||
|
"gopkg.in/urfave/cli.v2"
|
||||||
|
"github.com/tockins/realize/realize"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -27,7 +27,8 @@ func main() {
|
||||||
Category: "config",
|
Category: "config",
|
||||||
Usage: "create the initial config file",
|
Usage: "create the initial config file",
|
||||||
Action: func(c *cli.Context) error {
|
Action: func(c *cli.Context) error {
|
||||||
realize.Init().Create()
|
t := realize.Init()
|
||||||
|
t.Create()
|
||||||
fmt.Printf("Hello %q", c.String("run"))
|
fmt.Printf("Hello %q", c.String("run"))
|
||||||
return nil
|
return nil
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue