Fix typo in comment

This commit is contained in:
Girish Ramakrishnan
2017-09-21 14:36:20 -07:00
parent 3c1ccc5cf4
commit fb4b75dd2a

View File

@@ -80,7 +80,7 @@ function sudo(tag, args, options, callback) {
assert.strictEqual(typeof options, 'object');
// -S makes sudo read stdin for password. -E preserves arguments
// -S makes sudo read stdin for password. -E preserves environment
var cp = exec(tag, SUDO, [ options.env ? '-SE' : '-S' ].concat(args), options, callback);
cp.stdin.end();
return cp;