Merge pull request #1053 from justyntemme/patch-3
Change error message for unreadable files
This commit is contained in:
commit
9a89c32e9a
@ -47,7 +47,7 @@ func ValidateContextDirectory(srcPath string, excludes []string) error {
|
|||||||
return errors.Errorf("can't stat '%s'", filePath)
|
return errors.Errorf("can't stat '%s'", filePath)
|
||||||
}
|
}
|
||||||
if os.IsNotExist(err) {
|
if os.IsNotExist(err) {
|
||||||
return nil
|
return errors.Errorf("file ('%s') not found or excluded by .dockerignore", filePath)
|
||||||
}
|
}
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user