Skip to content

Commit cd22688

Browse files
committed
imagebuildah.StageExecutor.runStageMountPoints(): correct an error
Add a missing "not" to an error message. Signed-off-by: Nalin Dahyabhai <[email protected]>
1 parent 608acb9 commit cd22688

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

imagebuildah/stage_executor.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ func (s *StageExecutor) performCopy(excludes []string, copies ...imagebuilder.Co
546546
}
547547
contextDir = mountPoint
548548
}
549-
// Original behaviour of buildah still stays true for COPY irrespective of additional context.
549+
// This isn't --from the build context directory, so we don't want to force everything to 0:0
550550
preserveOwnership = true
551551
copyExcludes = excludes
552552
} else {
@@ -651,7 +651,7 @@ func (s *StageExecutor) runStageMountPoints(mountList []string) (map[string]inte
651651
if additionalBuildContext.IsImage {
652652
mountPoint, err := s.getImageRootfs(s.ctx, additionalBuildContext.Value)
653653
if err != nil {
654-
return nil, fmt.Errorf("%s from=%s: image found with that name", flag, from)
654+
return nil, fmt.Errorf("%s from=%s: image not found with that name", flag, from)
655655
}
656656
// The `from` in stageMountPoints should point
657657
// to `mountPoint` replaced from additional

0 commit comments

Comments
 (0)