Skip to content

Commit a30bd03

Browse files
committed
fix: ui download URL
1 parent cfe174f commit a30bd03

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

pkg/devspace/dependency/util/util_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
)
88

99
func TestSwitchURLType(t *testing.T) {
10-
httpURL := "https://github.com/loft-sh/devspace.git"
11-
sshURL := "git@github.com:loft-sh/devspace.git"
10+
httpURL := "https://github.com/devspace-sh/devspace.git"
11+
sshURL := "git@github.com:devspace-sh/devspace.git"
1212

1313
assert.Equal(t, sshURL, switchURLType(httpURL))
1414
assert.Equal(t, httpURL, switchURLType(sshURL))

pkg/devspace/server/download.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
)
2424

2525
// UIRepository is the repository containing the devspace UI
26-
const UIRepository = "https://github.com/loft-sh/devspace"
26+
const UIRepository = "https://github.com/devspace-sh/devspace"
2727

2828
// UIDownloadBaseURL is the base url where to look for the ui
2929
const UIDownloadBaseURL = UIRepository + "/releases/download"

pkg/devspace/services/inject/inject.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import (
3131
)
3232

3333
// DevSpaceHelperRepository is the repository containing the devspace helper
34-
const DevSpaceHelperRepository = "https://github.com/loft-sh/devspace"
34+
const DevSpaceHelperRepository = "https://github.com/devspace-sh/devspace"
3535

3636
// DevSpaceHelperBaseURL is the base url where to look for the sync helper
3737
const DevSpaceHelperBaseURL = DevSpaceHelperRepository + "/releases/download"
@@ -176,7 +176,7 @@ func downloadSyncHelper(ctx context.Context, helperName, syncBinaryFolder, versi
176176
}
177177

178178
// download sha256 html
179-
url := fmt.Sprintf("https://github.com/loft-sh/devspace/releases/download/%s/%s.sha256", version, helperName)
179+
url := fmt.Sprintf("https://github.com/devspace-sh/devspace/releases/download/%s/%s.sha256", version, helperName)
180180
req, err := http.NewRequestWithContext(ctx, "GET", url, nil)
181181
if err != nil {
182182
return nil

0 commit comments

Comments
 (0)