From 209cbc8974f87f707a86a3e2e1adadfe64fa811f Mon Sep 17 00:00:00 2001 From: alessio Date: Mon, 22 Aug 2016 18:08:41 +0200 Subject: [PATCH] flags updated --- main.go | 20 ++++++++++---------- realize/config.go | 14 +++++++------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/main.go b/main.go index cd2eb94..7d357ca 100644 --- a/main.go +++ b/main.go @@ -66,11 +66,11 @@ func main() { Name: "fast", Usage: "Build and watch file changes for a single project without any config file", Flags: []cli.Flag{ - &cli.BoolFlag{Name: "build", Value: false, Usage: "Enable go build"}, - &cli.BoolFlag{Name: "run", Usage: "Disable go run"}, - &cli.BoolFlag{Name: "bin", Usage: "Disable go install"}, - &cli.BoolFlag{Name: "fmt", Usage: "Disable gofmt"}, - &cli.BoolFlag{Name: "config", Value: false, Usage: "If there is a config file with a project for the current directory take that configuration"}, + &cli.BoolFlag{Name: "build", Value: false, Usage: "Enables the build"}, + &cli.BoolFlag{Name: "norun", Usage: "Disables the run"}, + &cli.BoolFlag{Name: "nobin", Usage: "Disables the installation"}, + &cli.BoolFlag{Name: "nofmt", Usage: "Disables the fmt (go fmt)"}, + &cli.BoolFlag{Name: "config", Value: false, Usage: "Take the defined settings if exist a config file."}, }, Action: func(p *cli.Context) error { y := r.New(p) @@ -88,12 +88,12 @@ func main() { Aliases: []string{"a"}, Usage: "Add another project", Flags: []cli.Flag{ - &cli.StringFlag{Name: "name", Aliases: []string{"n"}, Value: wd(), Usage: "Project name \t"}, - &cli.StringFlag{Name: "path", Aliases: []string{"b"}, Value: "/", Usage: "Project base path \t"}, + &cli.StringFlag{Name: "name", Aliases: []string{"n"}, Value: wd(), Usage: "Project name"}, + &cli.StringFlag{Name: "path", Aliases: []string{"b"}, Value: "/", Usage: "Project base path"}, &cli.BoolFlag{Name: "build", Value: false, Usage: "Enable go build"}, - &cli.BoolFlag{Name: "run", Usage: "Disable go run"}, - &cli.BoolFlag{Name: "bin", Usage: "Disable go install"}, - &cli.BoolFlag{Name: "fmt", Usage: "Disable gofmt"}, + &cli.BoolFlag{Name: "norun", Usage: "Disables the run"}, + &cli.BoolFlag{Name: "nobin", Usage: "Disables the installation"}, + &cli.BoolFlag{Name: "nofmt", Usage: "Disables the fmt (go fmt)"}, }, Action: func(p *cli.Context) error { y := r.New(p) diff --git a/realize/config.go b/realize/config.go index 26f0266..1589bcf 100644 --- a/realize/config.go +++ b/realize/config.go @@ -55,9 +55,9 @@ func New(params *cli.Context) *Config { Name: nameParam(params), Path: slash(params.String("path")), Build: params.Bool("build"), - Bin: boolParam(params.Bool("bin")), - Run: boolParam(params.Bool("run")), - Fmt: boolParam(params.Bool("fmt")), + Bin: boolParam(params.Bool("nobin")), + Run: boolParam(params.Bool("norun")), + Fmt: boolParam(params.Bool("nofmt")), Watcher: Watcher{ Paths: watcherPaths, Ignore: watcherIgnores, @@ -115,7 +115,7 @@ func (h *Config) Create() error { if err != nil { return err } - return ioutil.WriteFile(h.file, y, 0755) + return ioutil.WriteFile(h.file, y, 0655) } // Add another project @@ -126,9 +126,9 @@ func (h *Config) Add(params *cli.Context) error { Name: nameParam(params), Path: slash(params.String("path")), Build: params.Bool("build"), - Bin: boolParam(params.Bool("bin")), - Run: boolParam(params.Bool("run")), - Fmt: boolParam(params.Bool("fmt")), + Bin: boolParam(params.Bool("nobin")), + Run: boolParam(params.Bool("norun")), + Fmt: boolParam(params.Bool("nofmt")), Watcher: Watcher{ Paths: watcherPaths, Exts: watcherExts,