Skip to content

Commit

Permalink
[4.6] [packages] change repo path from major.x to major.minor (#13095)
Browse files Browse the repository at this point in the history
* [packages] change repo path from major.x to major.minor

* Pin esvm to 2.4
  • Loading branch information
jbudz authored Aug 9, 2017
1 parent 54d4f11 commit 97d1288
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tasks/config/esvm.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = function (grunt) {

return {
options: {
branch: '2.x',
branch: '2.4',
fresh: !grunt.option('esvm-no-fresh'),
config: {
network: {
Expand Down
4 changes: 2 additions & 2 deletions tasks/config/packages.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ export default (grunt) => {
const VERSION = grunt.config.get('build.version');
const SHORT_SHA = grunt.config.get('build.sha').substr(0, 7);

const FOLDER_STAGING = `kibana/staging/${VERSION}-${SHORT_SHA}/repos/${VERSION.match(/\d\./)[0]}x`;
const FOLDER_PRODUCTION = `kibana/${VERSION.match(/\d\./)[0]}x`;
const FOLDER_STAGING = `kibana/staging/${VERSION}-${SHORT_SHA}/repos/${VERSION.match(/\d\.\d/)[0]}`;
const FOLDER_PRODUCTION = `kibana/${VERSION.match(/\d\.\d/)[0]}`;

const FOLDERNAME_DEB = 'debian';
const FOLDERNAME_RPM = 'centos';
Expand Down

0 comments on commit 97d1288

Please sign in to comment.