mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Backport PR #8357
---------
**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:
parent
2e6cd595a9
commit
4a5623b23c
2 changed files with 2 additions and 2 deletions
|
@ -175,7 +175,7 @@ describe('kibana cli', function () {
|
||||||
|
|
||||||
const expected = [
|
const expected = [
|
||||||
command,
|
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);
|
expect(settings.urls).to.eql(expected);
|
||||||
|
|
|
@ -6,7 +6,7 @@ import { arch, platform } from 'os';
|
||||||
function generateUrls({ version, plugin }) {
|
function generateUrls({ version, plugin }) {
|
||||||
return [
|
return [
|
||||||
plugin,
|
plugin,
|
||||||
`https://artifacts.elastic.co/download/kibana-plugins/${plugin}/${plugin}-${version}.zip`
|
`https://artifacts.elastic.co/downloads/kibana-plugins/${plugin}/${plugin}-${version}.zip`
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue