From 324ba904e886a524e6b13e3b1bbba9fd68300c95 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Mon, 26 Mar 2018 15:26:37 -0400 Subject: [PATCH] usd cwd instead of pwd --- lib/utils/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/utils.js b/lib/utils/utils.js index 7c1be067f..c38c96eb5 100644 --- a/lib/utils/utils.js +++ b/lib/utils/utils.js @@ -124,7 +124,7 @@ function proposeAlternative(word, _dictionary, _exceptions) { } function pwd() { - return process.env.PWD || shelljs.pwd(); + return process.env.PWD || process.cwd(); } module.exports = {