Fix line lengths

This commit is contained in:
Joran Dirk Greef 2019-06-01 10:22:57 +02:00
parent 4da9ecb572
commit da118e99c3

View file

@ -95,7 +95,9 @@ function Linux(instance, end) {
command.push('"' + EscapeDoubleQuotes(binary) + '"');
if (/kdesudo/i.test(binary)) {
var reason = 'wants to make changes. Type your password to allow this.';
command.push('--comment', '"' + instance.options.name + ' ' + reason + '"');
command.push(
'--comment', '"' + instance.options.name + ' ' + reason + '"'
);
command.push('-d'); // Do not show the command to be run in the dialog.
command.push('--');
} else if (/pkexec/i.test(binary)) {