mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-06-15 00:15:32 +02:00
vendor: replace go-git package
This commit is contained in:
committed by
Jesse Duffield
parent
320e2a6536
commit
6a5d8ba859
27
vendor/github.com/go-git/go-billy/v5/osfs/os_posix.go
generated
vendored
Normal file
27
vendor/github.com/go-git/go-billy/v5/osfs/os_posix.go
generated
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
// +build !plan9,!windows
|
||||
|
||||
package osfs
|
||||
|
||||
import (
|
||||
"os"
|
||||
|
||||
"golang.org/x/sys/unix"
|
||||
)
|
||||
|
||||
func (f *file) Lock() error {
|
||||
f.m.Lock()
|
||||
defer f.m.Unlock()
|
||||
|
||||
return unix.Flock(int(f.File.Fd()), unix.LOCK_EX)
|
||||
}
|
||||
|
||||
func (f *file) Unlock() error {
|
||||
f.m.Lock()
|
||||
defer f.m.Unlock()
|
||||
|
||||
return unix.Flock(int(f.File.Fd()), unix.LOCK_UN)
|
||||
}
|
||||
|
||||
func rename(from, to string) error {
|
||||
return os.Rename(from, to)
|
||||
}
|
Reference in New Issue
Block a user