Skip to content

Commit b9f0f6f

Browse files
committed
wip
1 parent 53ce29f commit b9f0f6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/supervisor/pkg/supervisor/supervisor.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ func installDotfiles(ctx context.Context, cfg *Config, tokenService *InMemoryTok
487487
Location: dotfilePath,
488488
RemoteURI: repo,
489489
}
490-
done <- client.Clone(ctx)
490+
done <- client.Clone(ctx, false)
491491
close(done)
492492
}()
493493
select {
@@ -1398,7 +1398,7 @@ func startContentInit(ctx context.Context, cfg *Config, wg *sync.WaitGroup, cst
13981398

13991399
log.Info("supervisor: running content service executor with content descriptor")
14001400
var src csapi.WorkspaceInitSource
1401-
src, err = executor.Execute(ctx, "/workspace", contentFile, true)
1401+
src, err = executor.Execute(ctx, "/workspace", contentFile, false)
14021402
if err != nil {
14031403
return
14041404
}

0 commit comments

Comments
 (0)