summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Manuel <nilslice@gmail.com>2016-11-02 21:00:12 -0700
committerSteve Manuel <nilslice@gmail.com>2016-11-02 21:00:12 -0700
commit6e5cf4d4477c41d36d4fab5b7458fe2f01c32a2c (patch)
treecbfc69e1c6c6351425f0589e76d2ca9bb9f8c0bc
parentfe445ef5f3ccf8c989e9581046abc0590442081c (diff)
remove .git directory from new ponzu project
-rw-r--r--cmd/ponzu/options.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/cmd/ponzu/options.go b/cmd/ponzu/options.go
index 3790010..c905b47 100644
--- a/cmd/ponzu/options.go
+++ b/cmd/ponzu/options.go
@@ -288,9 +288,7 @@ func createProjInDir(path string) error {
return err
}
- // TODO: remove .git from ponzu project path
gitDir := filepath.Join(path, ".git")
- fmt.Println(gitDir)
err = os.RemoveAll(gitDir)
if err != nil {
fmt.Println("Failed to remove .git directory from your project path. Consider removing it manually.")