checking if project dir is not empty on init fixed

This commit is contained in:
nikandfor 2016-08-09 21:21:40 +03:00
parent 7c674d9e72
commit 806b2bb86a

View file

@ -72,7 +72,7 @@ func initializePath(path string) {
er(err)
}
} else { // If path exists and is not empty don't use it
empty, err := exists(path)
empty, err := isEmpty(path)
if err != nil {
er(err)
}