Skip to content

Commit

Permalink
Merge pull request elastic#8318 from elastic/jasper/backport/8317/5.x
Browse files Browse the repository at this point in the history
[backport] PR elastic#8317 to 5.x - [plugin installer] Point plugin url to artifacts.elastic.co
  • Loading branch information
epixa authored Sep 16, 2016
2 parents fa9205f + 87ce003 commit c76b619
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cli_plugin/install/__tests__/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion src/cli_plugin/install/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -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`
];
}

Expand Down

0 comments on commit c76b619

Please sign in to comment.