mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #7615 from crosbymichael/fix-utils-panic
Fix panic in validate context for build
This commit is contained in:
commit
63ed18ad11
1 changed files with 1 additions and 1 deletions
|
@ -644,7 +644,7 @@ func ValidateContextDirectory(srcPath string, excludes []string) error {
|
|||
// skip checking if symlinks point to non-existing files, such symlinks can be useful
|
||||
// also skip named pipes, because they hanging on open
|
||||
lstat, _ := os.Lstat(filePath)
|
||||
if lstat.Mode()&(os.ModeSymlink|os.ModeNamedPipe) != 0 {
|
||||
if lstat != nil && lstat.Mode()&(os.ModeSymlink|os.ModeNamedPipe) != 0 {
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue