mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-07-10 21:47:13 +08:00
vendor: update buildkit to master@c36941f4a10e
Signed-off-by: Justin Chadwell <me@jedevc.com>
This commit is contained in:
14
vendor/github.com/tonistiigi/fsutil/followlinks_unix.go
generated
vendored
Normal file
14
vendor/github.com/tonistiigi/fsutil/followlinks_unix.go
generated
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
//go:build !windows
|
||||
// +build !windows
|
||||
|
||||
package fsutil
|
||||
|
||||
import (
|
||||
"os"
|
||||
|
||||
"github.com/pkg/errors"
|
||||
)
|
||||
|
||||
func isNotFound(err error) bool {
|
||||
return errors.Is(err, os.ErrNotExist)
|
||||
}
|
Reference in New Issue
Block a user