Skip to content

Commit

Permalink
Remove debug print statements in install
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmccabe committed Oct 7, 2017
1 parent 8864e36 commit 74e515f
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions commands/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,9 @@ func getPluginDir() (string, error) {
}

func dirExists(path string) bool {
fmt.Printf("PATH: [%+v]\n", path)
stat, err := os.Stat(path)
fmt.Printf("stat: %+v\n", stat)
fmt.Printf("err: %v\n", err)
if err == nil && stat.IsDir() {
return true
}
// if stat, err := os.Stat(path); err == nil && stat.IsDir() {
// return true
// }
return false
}

0 comments on commit 74e515f

Please sign in to comment.