Skip to content

Commit 7040de0

Browse files
committed
fix tests
Tool: gitpod/catfood.gitpod.cloud
1 parent d08d996 commit 7040de0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

components/ws-daemon/cmd/debug-run-initializer.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ var debugRunInitializer = &cobra.Command{
2222
RunE: func(cmd *cobra.Command, args []string) error {
2323
dst := args[0]
2424
log.WithField("dst", dst).Info("running content initializer")
25-
return content.RunInitializer(context.Background(), dst, &api.WorkspaceInitializer{
25+
_, err := content.RunInitializer(context.Background(), dst, &api.WorkspaceInitializer{
2626
Spec: &api.WorkspaceInitializer_Git{
2727
Git: &api.GitInitializer{
2828
RemoteUri: "https://github.com/gitpod-io/gitpod.git",
@@ -35,6 +35,7 @@ var debugRunInitializer = &cobra.Command{
3535
},
3636
},
3737
}, make(map[string]storage.DownloadInfo), content.RunInitializerOpts{})
38+
return err
3839
},
3940
}
4041

0 commit comments

Comments
 (0)