Skip to content

Commit f57345f

Browse files
authored
Merge pull request #2511 from lizardruss/registry-url-rename
fix: rename repository URLs
2 parents 567e7aa + 8f65cc7 commit f57345f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

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/loft-sh/devspace/releases/download/v{{version}}/devspace-{{platform}}-{{arch}}";
11+
"https://github.com/devspace-sh/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/loft-sh/devspace/releases/latest";
82+
const releasesURL = "https://github.com/devspace-sh/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/loft-sh/devspace"
11+
"url": "https://github.com/devspace-sh/devspace"
1212
},
13-
"homepage": "https://github.com/loft-sh/devspace",
13+
"homepage": "https://github.com/devspace-sh/devspace",
1414
"scripts": {
1515
"postinstall": "node index.js install",
1616
"preuninstall": "node index.js uninstall",

0 commit comments

Comments
 (0)