Skip to content

Commit

Permalink
remove https from git url.
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-valdron committed Feb 11, 2022
1 parent 40cde78 commit a86df62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index/server/pkg/server/endpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ func serveDevfileStarterProject(c *gin.Context) {
Ctx: context.Background(),
Dst: downloadTmpLoc,
Dir: true,
Src: starterProject.Git.Remotes["origin"],
Src: strings.Split(starterProject.Git.Remotes["origin"], "https://")[1],
Mode: getter.ClientModeDir,
Detectors: []getter.Detector{
&getter.GitHubDetector{},
Expand Down

0 comments on commit a86df62

Please sign in to comment.