From 2d15fbd5d65423f035ffe5533a5507f9ff00cd0e Mon Sep 17 00:00:00 2001 From: meesvandongen <35409045+meesvandongen@users.noreply.github.com> Date: Wed, 15 Dec 2021 11:12:04 -0800 Subject: [PATCH] fix: typo in EINVALIDEXECCWD error message (#209) --- lib/definitions/errors.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/definitions/errors.js b/lib/definitions/errors.js index 060bcf2f..a59aa92a 100644 --- a/lib/definitions/errors.js +++ b/lib/definitions/errors.js @@ -25,7 +25,7 @@ Your configuration for the \`${cmdProp}\` option is \`${stringify(cmd)}\`.`, Your configuration for the \`shell\` option is \`${stringify(shell)}\`.`, }), EINVALIDEXECCWD: ({execCwd}) => ({ - message: 'Invalid `shell` option.', + message: 'Invalid `execCwd` option.', details: `The [\`execCwd\` option](${linkify('README.md#options')}) if defined, must be a non empty \`String\`. Your configuration for the \`execCwd\` option is \`${stringify(execCwd)}\`.`,