storage: Fix linter issue

Go style tries to avoid indented `else` blocks.
This commit is contained in:
beorn7 2016-12-13 19:03:22 +01:00
parent 568fd8a8cb
commit 837c029b16
1 changed files with 2 additions and 3 deletions

View File

@ -154,11 +154,10 @@ func newPersistence(
// empty. If not, we have found an old storage directory without
// version file, so we have to bail out.
if err := os.MkdirAll(basePath, 0700); err != nil {
if abspath, e := filepath.Abs(basePath); e != nil {
return nil, fmt.Errorf("cannot create persistent directory %s: %s", basePath, err)
} else {
if abspath, e := filepath.Abs(basePath); e == nil {
return nil, fmt.Errorf("cannot create persistent directory %s: %s", abspath, err)
}
return nil, fmt.Errorf("cannot create persistent directory %s: %s", basePath, err)
}
fis, err := ioutil.ReadDir(basePath)
if err != nil {