File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -329,24 +329,18 @@ func (cmd *UpCmd) buildImages(buildFlagChanged bool) bool {
329329 log .StopWait ()
330330
331331 if buildErr == nil {
332- log .Info ("Authentication successful (" + * registryConf .URL + ")" )
332+ log .Done ("Authentication successful (" + * registryConf .URL + ")" )
333333 buildOptions := & types.ImageBuildOptions {}
334334
335335 if imageConf .Build .Engine .Docker .Options != nil {
336336 if imageConf .Build .Engine .Docker .Options .BuildArgs != nil {
337337 buildOptions .BuildArgs = * imageConf .Build .Engine .Docker .Options .BuildArgs
338338 }
339339 }
340- log .StartWait ("Building Docker image" )
341340 buildErr = dockerBuilder .BuildImage (contextPath , dockerfilePath , buildOptions )
342- log .StopWait ()
343341
344342 if buildErr == nil {
345- log .Info ("Image successfully built" )
346-
347- log .StartWait ("Pushing Docker image" )
348343 buildErr = dockerBuilder .PushImage ()
349- log .StopWait ()
350344
351345 if buildErr == nil {
352346 log .Info ("Image pushed to registry (" + * registryConf .URL + ")" )
You can’t perform that action at this time.
0 commit comments