summaryrefslogtreecommitdiff
path: root/cmd/ponzu/options.go
diff options
context:
space:
mode:
authorSteve <nilslice@gmail.com>2016-10-19 15:35:18 -0700
committerGitHub <noreply@github.com>2016-10-19 15:35:18 -0700
commit519c5b44d0b36e1f61cb0228889401fa1e33357e (patch)
tree5a3db5cecdf9c1bf9be08e8d9f886692ab9fb4fd /cmd/ponzu/options.go
parent9578efc82d3637ec882511998539c2744d91e8d6 (diff)
parentaa97af279e0ad3fdda3e2ee7cf22e90d63b268c4 (diff)
Merge pull request #6 from bosssauce/ponzu-dev
[contrib] Adding details about contributing and using the ponzu cli
Diffstat (limited to 'cmd/ponzu/options.go')
-rw-r--r--cmd/ponzu/options.go16
1 files changed, 1 insertions, 15 deletions
diff --git a/cmd/ponzu/options.go b/cmd/ponzu/options.go
index 0090da7..cabe91a 100644
--- a/cmd/ponzu/options.go
+++ b/cmd/ponzu/options.go
@@ -215,20 +215,6 @@ func createProjInDir(path string) error {
}
if dev {
- branch := exec.Command("git", "checkout", "ponzu-dev")
- branch.Stdout = os.Stdout
- branch.Stderr = os.Stderr
-
- err := branch.Start()
- if err != nil {
- return err
- }
-
- err = branch.Wait()
- if err != nil {
- return err
- }
-
if fork != "" {
local = filepath.Join(gopath, "src", fork)
}
@@ -258,7 +244,7 @@ func createProjInDir(path string) error {
return err
}
- fmt.Println("Dev build cloned from bosssauce/ponzu:ponzu-dev")
+ fmt.Println("Dev build cloned from " + local + ":ponzu-dev")
return nil
}