From fb4b75dd2aebff81d08e0e6c14ae967ce914f1f4 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Thu, 21 Sep 2017 14:36:20 -0700 Subject: [PATCH] Fix typo in comment --- src/shell.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shell.js b/src/shell.js index b722b9e22..1b5024b4b 100644 --- a/src/shell.js +++ b/src/shell.js @@ -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;