@@ -181,7 +181,7 @@ func (c *cloner) CloneToBucket(
181
181
if err := execext .Run (
182
182
ctx ,
183
183
"git" ,
184
- execext .WithArgs ("sparse-checkout" , "set" , options .SubDir ),
184
+ execext .WithArgs (append ( gitConfigAuthArgs , "sparse-checkout" , "set" , options .SubDir ) ... ),
185
185
execext .WithEnv (app .Environ (envContainer )),
186
186
execext .WithStderr (buffer ),
187
187
execext .WithDir (baseDir .Path ()),
@@ -196,7 +196,7 @@ func (c *cloner) CloneToBucket(
196
196
if err := execext .Run (
197
197
ctx ,
198
198
"git" ,
199
- execext .WithArgs ("checkout" , "--force" , "FETCH_HEAD" ),
199
+ execext .WithArgs (append ( gitConfigAuthArgs , "checkout" , "--force" , "FETCH_HEAD" ) ... ),
200
200
execext .WithEnv (app .Environ (envContainer )),
201
201
execext .WithStderr (buffer ),
202
202
execext .WithDir (baseDir .Path ()),
@@ -210,7 +210,7 @@ func (c *cloner) CloneToBucket(
210
210
if err := execext .Run (
211
211
ctx ,
212
212
"git" ,
213
- execext .WithArgs ("checkout" , "--force" , checkoutRef ),
213
+ execext .WithArgs (append ( gitConfigAuthArgs , "checkout" , "--force" , checkoutRef ) ... ),
214
214
execext .WithEnv (app .Environ (envContainer )),
215
215
execext .WithStderr (buffer ),
216
216
execext .WithDir (baseDir .Path ()),
0 commit comments