This commit is contained in:
alessio 2016-07-12 22:48:05 +02:00
parent f3309a5e21
commit 86ba7a0aef
3 changed files with 8 additions and 8 deletions

6
glide.lock generated
View File

@ -1,8 +1,8 @@
hash: d127a34fbdc647df727f89190f0cfa8b658627ccdf8fb497c598e441a03dc1f0
updated: 2016-07-12T16:17:37.755334805+02:00
hash: 7bade7c00b648e1da872c366bddaf5fd79edb0b33b68a552e40d1856932f06da
updated: 2016-07-12T22:45:49.351419881+02:00
imports:
- name: gopkg.in/urfave/cli.v2
version: 1efa31f08b9333f1bd4882d61f9d668a70cd902e
version: 2b959bd8919d1110df44ec9a839e25a739906c3c
- name: gopkg.in/yaml.v2
version: a83829b6f1293c91addabc89d0571c246397bbf4
devImports: []

View File

@ -1,5 +1,4 @@
package: github.com/tockins/realize
import:
- package: gopkg.in/urfave/cli.v2
version: ^1.18.0
- package: gopkg.in/yaml.v2

View File

@ -1,10 +1,10 @@
package main
import (
"github.com/tockins/realize/realize"
"gopkg.in/urfave/cli.v2"
"fmt"
"os"
"fmt"
"gopkg.in/urfave/cli.v2"
"github.com/tockins/realize/realize"
)
func main() {
@ -27,7 +27,8 @@ func main() {
Category: "config",
Usage: "create the initial config file",
Action: func(c *cli.Context) error {
realize.Init().Create()
t := realize.Init()
t.Create()
fmt.Printf("Hello %q", c.String("run"))
return nil
},