Print a message before installing dependencies in npm post install
Should make it easier to see what it's doing and debugging failures.pull/67017/head
parent
fc0002cb66
commit
ba41bffa99
|
@ -17,6 +17,7 @@ function yarnInstall(location, opts) {
|
|||
opts.cwd = location;
|
||||
opts.stdio = 'inherit';
|
||||
|
||||
console.log('Installing dependencies in \'%s\'.', location);
|
||||
const result = cp.spawnSync(yarn, ['install'], opts);
|
||||
|
||||
if (result.error || result.status !== 0) {
|
||||
|
|
Loading…
Reference in New Issue