summaryrefslogtreecommitdiffstats
path: root/modules/lfs
diff options
context:
space:
mode:
authorEthan Koenig <ethantkoenig@gmail.com>2017-09-19 01:08:30 -0700
committerLauris BH <lauris@nix.lv>2017-09-19 11:08:30 +0300
commit4cb9394a978af75794d43accc231b6649f2884bc (patch)
tree06df979841396c51d292eb5a078ece1c8af11fd9 /modules/lfs
parentd155d0e6656df7b7699a4a6b60889689d6678ef5 (diff)
downloadgitea-4cb9394a978af75794d43accc231b6649f2884bc.tar.gz
gitea-4cb9394a978af75794d43accc231b6649f2884bc.zip
Fix lint errors (#2547)
Diffstat (limited to 'modules/lfs')
-rw-r--r--modules/lfs/content_store.go5
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.