diff options
author | Ethan Koenig <ethantkoenig@gmail.com> | 2017-09-19 01:08:30 -0700 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2017-09-19 11:08:30 +0300 |
commit | 4cb9394a978af75794d43accc231b6649f2884bc (patch) | |
tree | 06df979841396c51d292eb5a078ece1c8af11fd9 /modules/lfs | |
parent | d155d0e6656df7b7699a4a6b60889689d6678ef5 (diff) | |
download | gitea-4cb9394a978af75794d43accc231b6649f2884bc.tar.gz gitea-4cb9394a978af75794d43accc231b6649f2884bc.zip |
Fix lint errors (#2547)
Diffstat (limited to 'modules/lfs')
-rw-r--r-- | modules/lfs/content_store.go | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/modules/lfs/content_store.go b/modules/lfs/content_store.go index 94bb10136f..3e1b2f345b 100644 --- a/modules/lfs/content_store.go +++ b/modules/lfs/content_store.go @@ -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. |