Skip to content

Commit 2ac4f3e

Browse files
authoredFeb 7, 2019
Update rp.js
Clarifies misleading error message.
1 parent 18c838a commit 2ac4f3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/rp.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ try {
1818
/* istanbul ignore next */
1919
var EOL = require('os').EOL;
2020
/* istanbul ignore next */
21-
console.error(EOL + '###' + EOL + '### The "request" library is not installed automatically anymore.' + EOL + '### But required by "request-promise".' + EOL + '###' + EOL + '### npm install request --save' + EOL + '###' + EOL);
21+
console.error(EOL + '###' + EOL + '### The "request" library is not installed automatically anymore.' + EOL + '### But is a dependency of "request-promise".' + EOL + '### please install it with:' + EOL + '### npm install request --save' + EOL + '###' + EOL);
2222
/* istanbul ignore next */
2323
throw err;
2424
}

0 commit comments

Comments
 (0)
Please sign in to comment.