@@ -194,8 +194,8 @@ func run(ctx context.Context, opts options.Options, execArgs *execArgsInfo) erro
194194 var cloned bool
195195 if opts .GitURL != "" {
196196 endStage := startStage ("📦 Cloning %s to %s..." ,
197- newColor (color .FgCyan ).Sprintf (opts .GitURL ),
198- newColor (color .FgCyan ).Sprintf (opts .WorkspaceFolder ),
197+ newColor (color .FgCyan ).Sprint (opts .GitURL ),
198+ newColor (color .FgCyan ).Sprint (opts .WorkspaceFolder ),
199199 )
200200 stageNum := stageNumber
201201 logStage := func (format string , args ... any ) {
@@ -237,8 +237,8 @@ func run(ctx context.Context, opts options.Options, execArgs *execArgsInfo) erro
237237 cloneOpts .Path = workingDir .Join ("repo" )
238238
239239 endStage := startStage ("📦 Remote repo build mode enabled, cloning %s to %s for build context..." ,
240- newColor (color .FgCyan ).Sprintf (opts .GitURL ),
241- newColor (color .FgCyan ).Sprintf (cloneOpts .Path ),
240+ newColor (color .FgCyan ).Sprint (opts .GitURL ),
241+ newColor (color .FgCyan ).Sprint (cloneOpts .Path ),
242242 )
243243
244244 w := git .ProgressWriter (logStage )
@@ -1004,8 +1004,8 @@ func RunCacheProbe(ctx context.Context, opts options.Options) (v1.Image, error)
10041004 var cloned bool
10051005 if opts .GitURL != "" {
10061006 endStage := startStage ("📦 Cloning %s to %s..." ,
1007- newColor (color .FgCyan ).Sprintf (opts .GitURL ),
1008- newColor (color .FgCyan ).Sprintf (opts .WorkspaceFolder ),
1007+ newColor (color .FgCyan ).Sprint (opts .GitURL ),
1008+ newColor (color .FgCyan ).Sprint (opts .WorkspaceFolder ),
10091009 )
10101010 stageNum := stageNumber
10111011 logStage := func (format string , args ... any ) {
@@ -1045,8 +1045,8 @@ func RunCacheProbe(ctx context.Context, opts options.Options) (v1.Image, error)
10451045 cloneOpts .Path = workingDir .Join ("repo" )
10461046
10471047 endStage := startStage ("📦 Remote repo build mode enabled, cloning %s to %s for build context..." ,
1048- newColor (color .FgCyan ).Sprintf (opts .GitURL ),
1049- newColor (color .FgCyan ).Sprintf (cloneOpts .Path ),
1048+ newColor (color .FgCyan ).Sprint (opts .GitURL ),
1049+ newColor (color .FgCyan ).Sprint (cloneOpts .Path ),
10501050 )
10511051
10521052 w := git .ProgressWriter (logStage )
0 commit comments