Skip to content

Commit

Permalink
Set deb-priority to optional
Browse files Browse the repository at this point in the history
Fixes #6133
  • Loading branch information
jbudz committed Feb 8, 2016
1 parent 071c594 commit c392005
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/build/osPackages.js
Expand Up @@ -46,7 +46,7 @@ module.exports = function (grunt) {

grunt.file.mkdir(targetDir);
if (buildDeb || noneSpecified) {
fpm(args.concat('-t', 'deb', '-a', arch, files, sysv, systemd));
fpm(args.concat('-t', 'deb', '--deb-priority', 'optional', '-a', arch, files, sysv, systemd));
}
if (buildRpm || noneSpecified) {
fpm(args.concat('-t', 'rpm', '-a', arch, '--rpm-os', 'linux', files, sysv, systemd));
Expand Down

0 comments on commit c392005

Please sign in to comment.