Skip to content

Commit

Permalink
Escape spaces instead of quoting description
Browse files Browse the repository at this point in the history
Fixes #6103
  • Loading branch information
jbudz committed Feb 4, 2016
1 parent 06e1363 commit e66c0fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/build/osPackages.js
Expand Up @@ -22,7 +22,7 @@ module.exports = function (grunt) {
'--package', targetDir,
'-s', 'dir', // input type
'--name', 'kibana',
'--description', '"Explore and visualize your Elasticsearch data."',
'--description', 'Explore\ and\ visualize\ your\ Elasticsearch\ data.',
'--version', version,
'--after-install', resolve(userScriptsDir, 'installer.sh'),
'--after-remove', resolve(userScriptsDir, 'remover.sh'),
Expand Down

0 comments on commit e66c0fd

Please sign in to comment.