Skip to content

Commit d4ab66c

Browse files
jordiclarianaxvzf
authored andcommitted
Update git repository address to point to ankorstore fork
Signed-off-by: Jordi Clariana <jordi.clariana@ankorstore.com>
1 parent 593a84e commit d4ab66c

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

dist/npm/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const inquirer = require('inquirer');
88
const findProcess = require('find-process');
99

1010
const downloadPathTemplate =
11-
"https://github.com/devspace-sh/devspace/releases/download/v{{version}}/devspace-{{platform}}-{{arch}}";
11+
"https://github.com/ankorstore/devspace/releases/download/v{{version}}/devspace-{{platform}}-{{arch}}";
1212
const ARCH_MAPPING = {
1313
ia32: "386",
1414
x64: "amd64",
@@ -79,7 +79,7 @@ const sanitizeVersion = function(version) {
7979
}
8080

8181
const getLatestVersion = function (callback) {
82-
const releasesURL = "https://github.com/devspace-sh/devspace/releases/latest";
82+
const releasesURL = "https://github.com/ankorstore/devspace/releases/latest";
8383

8484
fetch(releasesURL, { headers: requestHeaders, redirect: false })
8585
.then(function (res) {

dist/npm/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"main": "index.js",
99
"repository": {
1010
"type": "git",
11-
"url": "https://github.com/devspace-sh/devspace"
11+
"url": "https://github.com/ankorstore/devspace"
1212
},
13-
"homepage": "https://github.com/devspace-sh/devspace",
13+
"homepage": "https://github.com/ankorstore/devspace",
1414
"scripts": {
1515
"postinstall": "node index.js install",
1616
"preuninstall": "node index.js uninstall",

e2e/tests/dependencies/testdata/cyclic/dependency2/devspace.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dependencies:
44
dependency:
55
path: ../dependency
66
root:
7-
git: https://github.com/devspace-sh/devspace.git
7+
git: https://github.com/ankorstore/devspace.git
88
subPath: e2e/tests/dependencies/testdata/cyclic
99

1010
deployments:

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/devspace-sh/devspace.git"
11-
sshURL := "git@github.com:devspace-sh/devspace.git"
10+
httpURL := "https://github.com/ankorstore/devspace.git"
11+
sshURL := "git@github.com:ankorstore/devspace.git"
1212

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

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/devspace-sh/devspace"
34+
const DevSpaceHelperRepository = "https://github.com/ankorstore/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/devspace-sh/devspace/releases/download/%s/%s.sha256", version, helperName)
179+
url := fmt.Sprintf("https://github.com/ankorstore/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)