Skip to content

Commit

Permalink
Merge pull request moby#4394 from Frankkkkk/master
Browse files Browse the repository at this point in the history
frontend/dockerfile/dockerfile2llb: errmsg: quote build target
  • Loading branch information
tonistiigi authored Nov 2, 2023
2 parents 1e403a7 + 828749d commit 04aac8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/dockerfile/dockerfile2llb/convert.go
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ func toDispatchState(ctx context.Context, dt []byte, opt ConvertOpt) (*dispatchS
var ok bool
target, ok = allDispatchStates.findStateByName(opt.Target)
if !ok {
return nil, errors.Errorf("target stage %s could not be found", opt.Target)
return nil, errors.Errorf("target stage %q could not be found", opt.Target)
}
}

Expand Down

0 comments on commit 04aac8c

Please sign in to comment.