Skip to content

Commit 2d7ce30

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 efc7a88 commit 2d7ce30

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
@@ -538,7 +538,7 @@ func (s *StageExecutor) performCopy(excludes []string, copies ...imagebuilder.Co
538538
}
539539
contextDir = mountPoint
540540
}
541-
// Original behaviour of buildah still stays true for COPY irrespective of additional context.
541+
// This isn't --from the build context directory, so we don't want to force everything to 0:0
542542
preserveOwnership = true
543543
copyExcludes = excludes
544544
} else {
@@ -644,7 +644,7 @@ func (s *StageExecutor) runStageMountPoints(mountList []string) (map[string]inte
644644
if additionalBuildContext.IsImage {
645645
mountPoint, err := s.getImageRootfs(s.ctx, additionalBuildContext.Value)
646646
if err != nil {
647-
return nil, fmt.Errorf("%s from=%s: image found with that name", flag, from)
647+
return nil, fmt.Errorf("%s from=%s: image not found with that name", flag, from)
648648
}
649649
// The `from` in stageMountPoints should point
650650
// to `mountPoint` replaced from additional

0 commit comments

Comments
 (0)