Skip to content

Commit 9c0137b

Browse files
committed
wip
1 parent cbb3750 commit 9c0137b

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
@@ -496,7 +496,7 @@ func installDotfiles(ctx context.Context, cfg *Config, tokenService *InMemoryTok
496496
Location: dotfilePath,
497497
RemoteURI: repo,
498498
}
499-
done <- client.Clone(ctx)
499+
done <- client.Clone(ctx, false)
500500
close(done)
501501
}()
502502
select {
@@ -1413,7 +1413,7 @@ func startContentInit(ctx context.Context, cfg *Config, wg *sync.WaitGroup, cst
14131413

14141414
log.Info("supervisor: running content service executor with content descriptor")
14151415
var src csapi.WorkspaceInitSource
1416-
src, err = executor.Execute(ctx, "/workspace", contentFile, true)
1416+
src, err = executor.Execute(ctx, "/workspace", contentFile, false)
14171417
if err != nil {
14181418
return
14191419
}

0 commit comments

Comments
 (0)