Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
Tool: gitpod/catfood.gitpod.cloud
  • Loading branch information
geropl committed Feb 5, 2025
1 parent d08d996 commit 7040de0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/ws-daemon/cmd/debug-run-initializer.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ var debugRunInitializer = &cobra.Command{
RunE: func(cmd *cobra.Command, args []string) error {
dst := args[0]
log.WithField("dst", dst).Info("running content initializer")
return content.RunInitializer(context.Background(), dst, &api.WorkspaceInitializer{
_, err := content.RunInitializer(context.Background(), dst, &api.WorkspaceInitializer{
Spec: &api.WorkspaceInitializer_Git{
Git: &api.GitInitializer{
RemoteUri: "https://github.com/gitpod-io/gitpod.git",
Expand All @@ -35,6 +35,7 @@ var debugRunInitializer = &cobra.Command{
},
},
}, make(map[string]storage.DownloadInfo), content.RunInitializerOpts{})
return err
},
}

Expand Down

0 comments on commit 7040de0

Please sign in to comment.