1
0
Fork 0
forked from forgejo/forgejo

Fix lint errors (#2547)

This commit is contained in:
Ethan Koenig 2017-09-19 01:08:30 -07:00 committed by Lauris BH
parent d155d0e665
commit 4cb9394a97
9 changed files with 9 additions and 41 deletions

View file

@ -70,10 +70,7 @@ func (s *ContentStore) Put(meta *models.LFSMetaObject, r io.Reader) error {
return errHashMismatch
}
if err := os.Rename(tmpPath, path); err != nil {
return err
}
return nil
return os.Rename(tmpPath, path)
}
// Exists returns true if the object exists in the content store.