feat(init): Continue Init with directory creation

This commit is contained in:
Matthieu 'JP' DERASSE
2022-08-02 20:30:46 +00:00
parent cc0e94690e
commit 5434cc15ce
6 changed files with 37 additions and 11 deletions

View File

@ -284,7 +284,7 @@ func (g Golang) PostInstall(path string) error {
log.Debug("creating gopath directory")
err = helpers.CheckAndCreateDir(filepath.Join(homeDir, "go"))
_, err = helpers.CheckAndCreateDir(filepath.Join(homeDir, "go"))
if err != nil {
return errors.Trace(err)
}