Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRebecca Turner <me@re-becca.org>2015-04-14 00:37:05 +0300
committerRebecca Turner <me@re-becca.org>2015-06-26 03:26:45 +0300
commitd880ab5668270217a5307250a3aeaabbfa024a46 (patch)
treeb5ad069d4724509f04ed539b50793454695773b8 /lib/install.js
parented4bdeede8156cad97e3b6f1226587cc482cd7cc (diff)
Make the bin linking step be serial and deterministic
Diffstat (limited to 'lib/install.js')
-rw-r--r--lib/install.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/install.js b/lib/install.js
index d0134755e..9b4d04741 100644
--- a/lib/install.js
+++ b/lib/install.js
@@ -328,7 +328,7 @@ Installer.prototype.executeActions = function (cb) {
[doSerialActions, 'remove', staging, todo, cg.newGroup('remove')],
[doSerialActions, 'move', staging, todo, cg.newGroup('move')],
[doSerialActions, 'finalize', staging, todo, cg.newGroup('finalize')],
- [doParallelActions, 'build', staging, todo, trackLifecycle.newGroup('build')],
+ [doSerialActions, 'build', staging, todo, trackLifecycle.newGroup('build')],
[doSerialActions, 'install', staging, todo, trackLifecycle.newGroup('install')],
[doSerialActions, 'postinstall', staging, todo, trackLifecycle.newGroup('postinstall')])
if (this.npat) {