Add logging

This commit is contained in:
Priya Wadhwa 2018-12-11 12:44:23 -08:00
parent b0b36ed85a
commit 9b01772cde
1 changed files with 3 additions and 0 deletions

View File

@ -553,16 +553,19 @@ func CopyFile(src, dest, buildcontext string) (bool, error) {
func excludeFile(path, buildcontext string) bool {
excluded, err := parseDockerignore(buildcontext)
if err != nil {
logrus.Errorf("unable to parse dockerignore, including %s in build: %v", path, err)
return false
}
if HasFilepathPrefix(path, buildcontext, false) {
path, err = filepath.Rel(buildcontext, path)
if err != nil {
logrus.Errorf("unable to get relative path, including %s in build: %v", path, err)
return false
}
}
match, err := fileutils.Matches(path, excluded)
if err != nil {
logrus.Errorf("error matching, including %s in build: %v", path, err)
return false
}
return match