Change error message for unreadable files

Fix for https://github.com/docker/for-linux/issues/44

Signed-off-by: Justyn Temme <justyntemme@gmail.com>
This commit is contained in:
Justyn Temme 2018-05-11 08:34:53 -05:00
parent ab1d49a313
commit c2a35cfa1a
1 changed files with 1 additions and 1 deletions

View File

@ -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
} }