diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2018-12-10 14:46:45 +0100 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2018-12-10 14:46:45 +0100 |
commit | a2b39f540e5b07cf361b530e19de30707b8ca0d7 (patch) | |
tree | 6cb4cefebd27d4bc3684771370ff00d7e940c0d7 /storage/filesystem/dotgit | |
parent | 3052df3d6cc39257d1c9d938ddfb5b862b913999 (diff) | |
download | go-git-a2b39f540e5b07cf361b530e19de30707b8ca0d7.tar.gz |
storage: new storage.ErrReferenceHasChanged error and test for CheckAndSetReference
Signed-off-by: Máximo Cuadros <mcuadros@gmail.com>
Diffstat (limited to 'storage/filesystem/dotgit')
-rw-r--r-- | storage/filesystem/dotgit/dotgit.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/storage/filesystem/dotgit/dotgit.go b/storage/filesystem/dotgit/dotgit.go index a58c248..ba9667e 100644 --- a/storage/filesystem/dotgit/dotgit.go +++ b/storage/filesystem/dotgit/dotgit.go @@ -14,6 +14,7 @@ import ( "gopkg.in/src-d/go-billy.v4/osfs" "gopkg.in/src-d/go-git.v4/plumbing" + "gopkg.in/src-d/go-git.v4/storage" "gopkg.in/src-d/go-git.v4/utils/ioutil" "gopkg.in/src-d/go-billy.v4" @@ -596,7 +597,7 @@ func (d *DotGit) checkReferenceAndTruncate(f billy.File, old *plumbing.Reference return err } if ref.Hash() != old.Hash() { - return fmt.Errorf("reference has changed concurrently") + return storage.ErrReferenceHasChanged } _, err = f.Seek(0, io.SeekStart) if err != nil { |