diff --git a/dist/npm/index.js b/dist/npm/index.js index eb4359c35f..389dadae34 100644 --- a/dist/npm/index.js +++ b/dist/npm/index.js @@ -8,7 +8,7 @@ const inquirer = require('inquirer'); const findProcess = require('find-process'); const downloadPathTemplate = - "https://github.com/loft-sh/devspace/releases/download/v{{version}}/devspace-{{platform}}-{{arch}}"; + "https://github.com/devspace-sh/devspace/releases/download/v{{version}}/devspace-{{platform}}-{{arch}}"; const ARCH_MAPPING = { ia32: "386", x64: "amd64", @@ -79,7 +79,7 @@ const sanitizeVersion = function(version) { } const getLatestVersion = function (callback) { - const releasesURL = "https://github.com/loft-sh/devspace/releases/latest"; + const releasesURL = "https://github.com/devspace-sh/devspace/releases/latest"; fetch(releasesURL, { headers: requestHeaders, redirect: false }) .then(function (res) { diff --git a/dist/npm/package.json b/dist/npm/package.json index 405a9f8220..ae0d8555be 100644 --- a/dist/npm/package.json +++ b/dist/npm/package.json @@ -8,9 +8,9 @@ "main": "index.js", "repository": { "type": "git", - "url": "https://github.com/loft-sh/devspace" + "url": "https://github.com/devspace-sh/devspace" }, - "homepage": "https://github.com/loft-sh/devspace", + "homepage": "https://github.com/devspace-sh/devspace", "scripts": { "postinstall": "node index.js install", "preuninstall": "node index.js uninstall",