mirror of https://github.com/apache/nifi.git
NIFI-768 added parens to protect password entry just like commit message had
This commit is contained in:
parent
d68c7ec24a
commit
cbfe3fc317
|
@ -224,7 +224,7 @@ module.exports = function (grunt) {
|
|||
command += (' --username ' + username);
|
||||
}
|
||||
if (password !== '') {
|
||||
command += (' --password ' + password);
|
||||
command += (' --password "' + password + '"');
|
||||
}
|
||||
return command + ' -m "' + message + '" --trust-server-cert --non-interactive .';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue