NIFI-768 added parens to protect password entry just like commit message had

This commit is contained in:
joewitt 2015-07-18 00:41:05 -04:00
parent d68c7ec24a
commit cbfe3fc317
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ module.exports = function (grunt) {
command += (' --username ' + username); command += (' --username ' + username);
} }
if (password !== '') { if (password !== '') {
command += (' --password ' + password); command += (' --password "' + password + '"');
} }
return command + ' -m "' + message + '" --trust-server-cert --non-interactive .'; return command + ' -m "' + message + '" --trust-server-cert --non-interactive .';
} }