Merge pull request #8319 from elastic/jasper/backport/8317/5.0

[backport] PR #8317 to 5.0 - [plugin installer] Point plugin url to artifacts.elastic.co
This commit is contained in:
Court Ewing 2016-09-16 17:30:18 -04:00 committed by GitHub
commit 51418f9342
2 changed files with 2 additions and 2 deletions

View file

@ -175,7 +175,7 @@ describe('kibana cli', function () {
const expected = [
command,
`https://download.elastic.co/kibana/${command}/${command}-1234.zip`
`https://artifacts.elastic.co/download/kibana-plugins/${command}/${command}-1234.zip`
];
expect(settings.urls).to.eql(expected);

View file

@ -6,7 +6,7 @@ import { arch, platform } from 'os';
function generateUrls({ version, plugin }) {
return [
plugin,
`https://download.elastic.co/kibana/${plugin}/${plugin}-${version}.zip`
`https://artifacts.elastic.co/download/kibana-plugins/${plugin}/${plugin}-${version}.zip`
];
}