Skip to content

Commit

Permalink
imagebuildah: additionalContext is not a local built stage
Browse files Browse the repository at this point in the history
This line looks like a typo in past commit as `additionalContext` which
is found is not a local built stage so set `IsStage` to `false`.

Signed-off-by: flouthoc <[email protected]>
  • Loading branch information
flouthoc committed Aug 18, 2024
1 parent 899b05e commit 3bc7653
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imagebuildah/stage_executor.go
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ func (s *StageExecutor) runStageMountPoints(mountList []string) (map[string]inte
mountPoint = additionalBuildContext.DownloadedCache
}
}
stageMountPoints[from] = internal.StageMountDetails{IsStage: true, DidExecute: true, MountPoint: mountPoint}
stageMountPoints[from] = internal.StageMountDetails{IsStage: false, DidExecute: true, MountPoint: mountPoint}
break
}
// If the source's name corresponds to the
Expand Down

0 comments on commit 3bc7653

Please sign in to comment.