---------

**Commit 1:**
Changes plugin location for consistent naming (download{,s})

This puts us in alignment with other formats we are using

Related to https://github.com/elastic/kibana/pull/8317

Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co>

* Original sha: 0f19156bb5
* Authored by Tyler Smalley <tyler.smalley@elastic.co> on 2016-09-20T00:48:36Z
This commit is contained in:
Elastic Jasper 2016-09-19 21:24:10 -04:00
parent 2e6cd595a9
commit 4a5623b23c
2 changed files with 2 additions and 2 deletions

View file

@ -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);

View file

@ -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`
];
}