Skip to content

Commit

Permalink
Merge pull request elastic#8361 from elastic/jasper/backport/8357/5.x
Browse files Browse the repository at this point in the history
[backport] PR elastic#8357 to 5.x - [plugin installer] Change download path
  • Loading branch information
tylersmalley committed Sep 20, 2016
2 parents 41b7726 + 06a5cd3 commit 723b788
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://artifacts.elastic.co/download/kibana-plugins/${command}/${command}-1234.zip`
`https://artifacts.elastic.co/downloads/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://artifacts.elastic.co/download/kibana-plugins/${plugin}/${plugin}-${version}.zip`
`https://artifacts.elastic.co/downloads/kibana-plugins/${plugin}/${plugin}-${version}.zip`
];
}

Expand Down

0 comments on commit 723b788

Please sign in to comment.