[plugin installer] Point plugin url to artifacts.elastic.co

This commit is contained in:
Jonathan Budzenski 2016-09-16 15:53:19 -05:00
parent 84a504ecf0
commit e719222da4
No known key found for this signature in database
GPG key ID: D28BF9418FA0F292
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`
];
}