We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 08044eb + 9d59354 commit 37c5798Copy full SHA for 37c5798
pkg/util/image_prep_utils.go
@@ -115,7 +115,7 @@ type ConfigSchema struct {
115
116
func getImage(p Prepper) (Image, error) {
117
// see if the image name has tag provided, if not add latest as tag
118
- if !HasTag(p.GetSource()) {
+ if !IsTar(p.GetSource()) && !HasTag(p.GetSource()) {
119
p.SetSource(p.GetSource() + LatestTag)
120
}
121
output.PrintToStdErr("Retrieving image %s from source %s\n", p.GetSource(), p.Name())
0 commit comments