X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=pathman%2Freleases.js;h=019ca9b1e2d95e66ae5f1cf7b89c5640554dfc03;hb=6c514f63237f5ccbab4559021a77330467c9bb27;hp=e57e5d32898d8211e763b39fb064d6ce6f7afa0b;hpb=c32ea6d98e263436d3409da7ef0e4177b9c27da5;p=webi-installers%2F.git diff --git a/pathman/releases.js b/pathman/releases.js index e57e5d3..019ca9b 100644 --- a/pathman/releases.js +++ b/pathman/releases.js @@ -1,9 +1,9 @@ 'use strict'; var github = require('../_common/gitea.js'); -var owner = 'coolaj86'; -var repo = 'go-pathman'; -var baseurl = 'https://git.coolaj86.com' +var owner = 'root'; +var repo = 'pathman'; +var baseurl = 'https://git.rootprojects.org'; module.exports = function (request) { return github(request, owner, repo, baseurl).then(function (all) { @@ -13,6 +13,6 @@ module.exports = function (request) { if (module === require.main) { module.exports(require('@root/request')).then(function (all) { - console.log(JSON.stringify(all, null, 2)); + console.info(JSON.stringify(all, null, 2)); }); }