Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't install on Windows 7 x64 #80

Closed
borysl opened this issue Dec 18, 2013 · 9 comments
Closed

Can't install on Windows 7 x64 #80

borysl opened this issue Dec 18, 2013 · 9 comments

Comments

@borysl
Copy link

borysl commented Dec 18, 2013

I have Windows 7 x64 and tried following:

  1. Use node-js 0.10.X
  2. Use node-js 0.8.25 x64
  3. Use node-js 0.8.25 [x32]

1,2 were failed because of environment
The experiment 3 fails with following error:

D:\Projects\soap_client>npm install node-expat
npm http GET https://registry.npmjs.org/node-expat
npm http 304 https://registry.npmjs.org/node-expat
npm http GET https://registry.npmjs.org/nan
npm http 304 https://registry.npmjs.org/nan

[email protected] install D:\Projects\soap_client\node_modules\node-
expat
node-gyp rebuild

D:\Projects\soap_client\node_modules\node-expat>node "C:\Program File
s (x86)\nodejs\node_modules\npm\bin\node-gyp-bin....\node_modules\node-gyp\bi
n\node-gyp.js" rebuild
Building the projects in this solution one at a time. To enable parallel build,
please add the "/m" switch.
C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppBuild.targets(29
6,5): warning MSB8003: Could not find VCInstallDir variable from the registry.
TargetFrameworkVersion or PlatformToolset may be set to an invalid version num
ber. [D:\Projects\soap_client\node_modules\node-expat\build\deps\lib
expat\expat.vcxproj]
xmltok.c
xmlrole.c
xmlparse.c
......\deps\libexpat\lib\xmltok.c(5): fatal error C1083: Cannot open include
file: 'stddef.h': No such file or directory [D:\Projects\soap_client
\node_modules\node-expat\build\deps\libexpat\expat.vcxproj]
......\deps\libexpat\lib\xmlparse.c(5): fatal error C1083: Cannot open includ
e file: 'stddef.h': No such file or directory [D:\Projects\soap_clie
nt\node_modules\node-expat\build\deps\libexpat\expat.vcxproj]
......\deps\libexpat\lib\xmlrole.c(5): fatal error C1083: Cannot open include
file: 'stddef.h': No such file or directory [D:\Projects\soap_clien
t\node_modules\node-expat\build\deps\libexpat\expat.vcxproj]
gyp ERR! build error
gyp ERR! stack Error: msbuild failed with exit code: 1
gyp ERR! stack at ChildProcess.onExit (C:\Program Files (x86)\nodejs\node_mo
dules\npm\node_modules\node-gyp\lib\build.js:267:23)
gyp ERR! stack at ChildProcess.EventEmitter.emit (events.js:99:17)
gyp ERR! stack at Process._handle.onexit (child_process.js:686:10)
gyp ERR! System Windows_NT 6.1.7601
gyp ERR! command "node" "C:\Program Files (x86)\nodejs\node_modules\npm\nod
e_modules\node-gyp\bin\node-gyp.js" "rebuild"
gyp ERR! cwd D:\Projects\soap_client\node_modules\node-expat
gyp ERR! node -v v0.8.25
gyp ERR! node-gyp -v v0.10.0
gyp ERR! not ok
npm ERR! weird error 1
npm ERR! not ok code 0

@lloydwatkin
Copy link
Contributor

Could you check out the note from the readme about installing on windows and then feed back?

@lloydwatkin
Copy link
Contributor

Just had a fix from @rvagg which I've published as v2.1.4, this may improve things for you also.

@chaliy
Copy link

chaliy commented Dec 21, 2013

v2.1.4 does not fix, note from README mentions another issue.

@rvagg
Copy link
Contributor

rvagg commented Dec 22, 2013

@chaliy @borysl can you check the list of dependencies required on Windows here and confirm that you have everything? The SDK may be needed unless you're using the 2012 VS. I believe stddef.h comes with the platform SDK. If you have multiple versions of VS installed you may have difficulties too, try uninstalling older ones if you don't need them. Also as the node-gyp instructions say, try removing any redistributables that you have installed.

@borysl
Copy link
Author

borysl commented Dec 25, 2013

I have end up with the problem when node-expat.cc can't find nan.h
the line was #include <nan.h>

then I restart installation process, but replace this line with

#include "node_modules/nan/nan.h"

this time installation was successful.

Why it was assumed that nan.h is in default location?

@rvagg
Copy link
Contributor

rvagg commented Dec 25, 2013

binding.gyp takes care of including the header. If you have the current version you should see this line exactly in the binding.gyp at the top of the node-expat directory:

'<!(node -e "require(\'nan\')")'

Note the quoting.

Can you confirm that you have this version? Needs " around the "require...".

@padillla
Copy link

padillla commented Jun 3, 2014

I wouldnt close this W7 build issues. Its not fixed.

The following error has occurred during XML parsing:

File: C:\Users\Padilla\Documents\GitHub\wp2ghost\node_modules\xml-stream\node_modules\node-expat\build\deps\libexpat\expat.vcproj
Line: 1
Column: 5032
VCBUILD : error Message: [C:\Users\Padilla\Documents\GitHub\wp2ghost\node_modules\xml-stream\node_modules\node-expat\build\binding.sln]
System error: -2147154687.

The file 'C:\Users\Padilla\js\node-gyp\node_modules\xml-stream\node_modules\node-expat\build\deps\libexpat\expat.vcproj' has failed to load.

I tried looking for it but it deletes the node_modules/xml-parser folder when it crashes.

googled everywhere I found myself installing VS 2010, 2012, .Net SDK, and a bunch of things .... with the same error.

I guess this is just not made for windows.

@a-iv
Copy link

a-iv commented Jun 20, 2014

@padillla, You should install node x86 if you are using VS x86 (and node x64 with VS x64).

Uninstall VS 2008 if any.
Or just use npm install --msvs_version=2012.

@dev9846
Copy link

dev9846 commented Apr 26, 2017

0 info it worked if it ends with ok
1 verbose cli [ 'C:\Program Files\nodejs\node.exe',
1 verbose cli 'C:\Users\SW22\AppData\Roaming\npm\node_modules\npm\bin\npm-cli.js',
1 verbose cli 'i',
1 verbose cli 'node-expat' ]
2 info using [email protected]
3 info using [email protected]
4 silly loadCurrentTree Starting
5 silly install loadCurrentTree
6 silly install readLocalPackageData
7 silly fetchPackageMetaData node-expat
8 silly fetchNamedPackageData node-expat
9 silly mapToRegistry name node-expat
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry data Result {
12 silly mapToRegistry raw: 'node-expat',
12 silly mapToRegistry scope: null,
12 silly mapToRegistry escapedName: 'node-expat',
12 silly mapToRegistry name: 'node-expat',
12 silly mapToRegistry rawSpec: '',
12 silly mapToRegistry spec: 'latest',
12 silly mapToRegistry type: 'tag' }
13 silly mapToRegistry uri https://registry.npmjs.org/node-expat
14 verbose request uri https://registry.npmjs.org/node-expat
15 verbose request no auth needed
16 info attempt registry request try #1 at 6:44:05 PM
17 verbose request id 3c59b2db6cc51d6a
18 verbose etag W/"58fcd678-fb9d"
19 verbose lastModified Sun, 23 Apr 2017 16:29:44 GMT
20 http request GET https://registry.npmjs.org/node-expat
21 http 304 https://registry.npmjs.org/node-expat
22 verbose headers { date: 'Wed, 26 Apr 2017 13:14:10 GMT',
22 verbose headers via: '1.1 varnish',
22 verbose headers 'cache-control': 'max-age=300',
22 verbose headers etag: 'W/"58fcd678-fb9d"',
22 verbose headers age: '287',
22 verbose headers connection: 'keep-alive',
22 verbose headers 'x-served-by': 'cache-lhr6321-LHR',
22 verbose headers 'x-cache': 'HIT',
22 verbose headers 'x-cache-hits': '1',
22 verbose headers 'x-timer': 'S1493212451.966432,VS0,VE0',
22 verbose headers vary: 'Accept-Encoding' }
23 silly get cb [ 304,
23 silly get { date: 'Wed, 26 Apr 2017 13:14:10 GMT',
23 silly get via: '1.1 varnish',
23 silly get 'cache-control': 'max-age=300',
23 silly get etag: 'W/"58fcd678-fb9d"',
23 silly get age: '287',
23 silly get connection: 'keep-alive',
23 silly get 'x-served-by': 'cache-lhr6321-LHR',
23 silly get 'x-cache': 'HIT',
23 silly get 'x-cache-hits': '1',
23 silly get 'x-timer': 'S1493212451.966432,VS0,VE0',
23 silly get vary: 'Accept-Encoding' } ]
24 verbose etag https://registry.npmjs.org/node-expat from cache
25 verbose get saving node-expat to C:\Users\SW22\AppData\Roaming\npm-cache\registry.npmjs.org\node-expat.cache.json
26 verbose correctMkdir C:\Users\SW22\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
27 silly install normalizeTree
28 silly loadCurrentTree Finishing
29 silly loadIdealTree Starting
30 silly install loadIdealTree
31 silly cloneCurrentTree Starting
32 silly install cloneCurrentTreeToIdealTree
33 silly cloneCurrentTree Finishing
34 silly loadShrinkwrap Starting
35 silly install loadShrinkwrap
36 silly loadShrinkwrap Finishing
37 silly loadAllDepsIntoIdealTree Starting
38 silly install loadAllDepsIntoIdealTree
39 silly resolveWithNewModule [email protected] checking installable status
40 silly cache add args [ 'node-expat', null ]
41 verbose cache add spec node-expat
42 silly cache add parsed spec Result {
42 silly cache add raw: 'node-expat',
42 silly cache add scope: null,
42 silly cache add escapedName: 'node-expat',
42 silly cache add name: 'node-expat',
42 silly cache add rawSpec: '',
42 silly cache add spec: 'latest',
42 silly cache add type: 'tag' }
43 silly addNamed node-expat@latest
44 verbose addNamed "latest" is being treated as a dist-tag for node-expat
45 info addNameTag [ 'node-expat', 'latest' ]
46 silly mapToRegistry name node-expat
47 silly mapToRegistry using default registry
48 silly mapToRegistry registry https://registry.npmjs.org/
49 silly mapToRegistry data Result {
49 silly mapToRegistry raw: 'node-expat',
49 silly mapToRegistry scope: null,
49 silly mapToRegistry escapedName: 'node-expat',
49 silly mapToRegistry name: 'node-expat',
49 silly mapToRegistry rawSpec: '',
49 silly mapToRegistry spec: 'latest',
49 silly mapToRegistry type: 'tag' }
50 silly mapToRegistry uri https://registry.npmjs.org/node-expat
51 verbose addNameTag registry:https://registry.npmjs.org/node-expat not in flight; fetching
52 verbose get https://registry.npmjs.org/node-expat not expired, no request
53 silly addNameTag next cb for node-expat with tag latest
54 silly addNamed [email protected]
55 verbose addNamed "2.3.15" is a plain semver version for node-expat
56 silly cache afterAdd [email protected]
57 verbose afterAdd C:\Users\SW22\AppData\Roaming\npm-cache\node-expat\2.3.15\package\package.json not in flight; writing
58 verbose correctMkdir C:\Users\SW22\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
59 verbose afterAdd C:\Users\SW22\AppData\Roaming\npm-cache\node-expat\2.3.15\package\package.json written
60 silly loadAllDepsIntoIdealTree Finishing
61 silly loadIdealTree Finishing
62 silly currentTree [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree | +-- [email protected]
62 silly currentTree | +-- [email protected]
62 silly currentTree | -- [email protected] 62 silly currentTree +-- [email protected] 62 silly currentTree | -- [email protected]
62 silly currentTree | -- [email protected] 62 silly currentTree | -- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree | +-- [email protected]
62 silly currentTree | +-- [email protected]
62 silly currentTree | +-- [email protected]
62 silly currentTree | | -- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | | +-- [email protected] 62 silly currentTree | | +-- [email protected] 62 silly currentTree | | -- [email protected]
62 silly currentTree | +-- [email protected]
62 silly currentTree | +-- [email protected]
62 silly currentTree | +-- [email protected]
62 silly currentTree | | -- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | | -- [email protected]
62 silly currentTree | -- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | -- [email protected]
62 silly currentTree | -- [email protected] 62 silly currentTree +-- [email protected] 62 silly currentTree +-- [email protected] 62 silly currentTree +-- [email protected] 62 silly currentTree +-- [email protected] 62 silly currentTree +-- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | -- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree | +-- [email protected]
62 silly currentTree | | +-- [email protected]
62 silly currentTree | | | -- [email protected] 62 silly currentTree | | -- [email protected]
62 silly currentTree | +-- [email protected]
62 silly currentTree | +-- [email protected]
62 silly currentTree | +-- [email protected]
62 silly currentTree | +-- [email protected]
62 silly currentTree | +-- [email protected]
62 silly currentTree | +-- [email protected]
62 silly currentTree | | -- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | | +-- [email protected] 62 silly currentTree | | | -- [email protected]
62 silly currentTree | | -- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | | -- [email protected]
62 silly currentTree | +-- [email protected]
62 silly currentTree | +-- [email protected]
62 silly currentTree | +-- [email protected]
62 silly currentTree | | +-- [email protected]
62 silly currentTree | | -- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | | +-- [email protected] 62 silly currentTree | | +-- [email protected] 62 silly currentTree | | | -- [email protected]
62 silly currentTree | | +-- [email protected]
62 silly currentTree | | -- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | | +-- [email protected] 62 silly currentTree | | -- [email protected]
62 silly currentTree | | -- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | -- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree | +-- [email protected]
62 silly currentTree | +-- [email protected]
62 silly currentTree | | -- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | | -- [email protected]
62 silly currentTree | -- [email protected] 62 silly currentTree +-- [email protected] 62 silly currentTree +-- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | | +-- [email protected] 62 silly currentTree | | | -- [email protected]
62 silly currentTree | | -- [email protected] 62 silly currentTree | | +-- [email protected] 62 silly currentTree | | +-- [email protected] 62 silly currentTree | | +-- [email protected] 62 silly currentTree | | -- [email protected]
62 silly currentTree | +-- [email protected]
62 silly currentTree | | +-- [email protected]
62 silly currentTree | | +-- [email protected]
62 silly currentTree | | | +-- [email protected]
62 silly currentTree | | | +-- [email protected]
62 silly currentTree | | | +-- [email protected]
62 silly currentTree | | | +-- [email protected]
62 silly currentTree | | | +-- [email protected]
62 silly currentTree | | | -- [email protected] 62 silly currentTree | | -- [email protected]
62 silly currentTree | +-- [email protected]
62 silly currentTree | | -- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | | -- [email protected]
62 silly currentTree | +-- [email protected]
62 silly currentTree | | +-- [email protected]
62 silly currentTree | | -- [email protected] 62 silly currentTree | | -- [email protected]
62 silly currentTree | -- [email protected] 62 silly currentTree +-- [email protected] 62 silly currentTree +-- [email protected] 62 silly currentTree +-- [email protected] 62 silly currentTree | -- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree | +-- [email protected]
62 silly currentTree | -- [email protected] 62 silly currentTree +-- [email protected] 62 silly currentTree +-- [email protected] 62 silly currentTree +-- [email protected] 62 silly currentTree +-- [email protected] 62 silly currentTree +-- [email protected] 62 silly currentTree +-- [email protected] 62 silly currentTree +-- [email protected] 62 silly currentTree +-- [email protected] 62 silly currentTree +-- [email protected] 62 silly currentTree +-- [email protected] 62 silly currentTree +-- [email protected] 62 silly currentTree +-- [email protected] 62 silly currentTree +-- [email protected] 62 silly currentTree | +-- [email protected] 62 silly currentTree | -- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree +-- [email protected]
62 silly currentTree -- [email protected] 63 silly idealTree [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree | +-- [email protected] 63 silly idealTree | +-- [email protected] 63 silly idealTree | -- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree | -- [email protected] 63 silly idealTree | -- [email protected]
63 silly idealTree | -- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree | +-- [email protected] 63 silly idealTree | +-- [email protected] 63 silly idealTree | +-- [email protected] 63 silly idealTree | | -- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | | +-- [email protected]
63 silly idealTree | | +-- [email protected]
63 silly idealTree | | -- [email protected] 63 silly idealTree | +-- [email protected] 63 silly idealTree | +-- [email protected] 63 silly idealTree | +-- [email protected] 63 silly idealTree | | -- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | | -- [email protected] 63 silly idealTree | -- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | -- [email protected] 63 silly idealTree | -- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | -- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree | +-- [email protected] 63 silly idealTree | | +-- [email protected] 63 silly idealTree | | | -- [email protected]
63 silly idealTree | | -- [email protected] 63 silly idealTree | +-- [email protected] 63 silly idealTree | +-- [email protected] 63 silly idealTree | +-- [email protected] 63 silly idealTree | +-- [email protected] 63 silly idealTree | +-- [email protected] 63 silly idealTree | +-- [email protected] 63 silly idealTree | | -- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | | +-- [email protected]
63 silly idealTree | | | -- [email protected] 63 silly idealTree | | -- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | | -- [email protected] 63 silly idealTree | +-- [email protected] 63 silly idealTree | +-- [email protected] 63 silly idealTree | +-- [email protected] 63 silly idealTree | | +-- [email protected] 63 silly idealTree | | -- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | | +-- [email protected]
63 silly idealTree | | +-- [email protected]
63 silly idealTree | | | -- [email protected] 63 silly idealTree | | +-- [email protected] 63 silly idealTree | | -- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | | +-- [email protected]
63 silly idealTree | | -- [email protected] 63 silly idealTree | | -- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | -- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree | +-- [email protected] 63 silly idealTree | +-- [email protected] 63 silly idealTree | | -- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | | -- [email protected] 63 silly idealTree | -- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | | +-- [email protected]
63 silly idealTree | | | -- [email protected] 63 silly idealTree | | -- [email protected]
63 silly idealTree | | +-- [email protected]
63 silly idealTree | | +-- [email protected]
63 silly idealTree | | +-- [email protected]
63 silly idealTree | | -- [email protected] 63 silly idealTree | +-- [email protected] 63 silly idealTree | | +-- [email protected] 63 silly idealTree | | +-- [email protected] 63 silly idealTree | | | +-- [email protected] 63 silly idealTree | | | +-- [email protected] 63 silly idealTree | | | +-- [email protected] 63 silly idealTree | | | +-- [email protected] 63 silly idealTree | | | +-- [email protected] 63 silly idealTree | | | -- [email protected]
63 silly idealTree | | -- [email protected] 63 silly idealTree | +-- [email protected] 63 silly idealTree | | -- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | | -- [email protected] 63 silly idealTree | +-- [email protected] 63 silly idealTree | | +-- [email protected] 63 silly idealTree | | -- [email protected]
63 silly idealTree | | -- [email protected] 63 silly idealTree | -- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree | -- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree | +-- [email protected] 63 silly idealTree | -- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree +-- [email protected]
63 silly idealTree | +-- [email protected]
63 silly idealTree | -- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree +-- [email protected] 63 silly idealTree -- [email protected]
64 silly generateActionsToTake Starting
65 silly install generateActionsToTake
66 silly generateActionsToTake Finishing
67 silly diffTrees action count 1
68 silly diffTrees add [email protected]
69 silly decomposeActions action count 8
70 silly decomposeActions fetch [email protected]
71 silly decomposeActions extract [email protected]
72 silly decomposeActions test [email protected]
73 silly decomposeActions preinstall [email protected]
74 silly decomposeActions build [email protected]
75 silly decomposeActions install [email protected]
76 silly decomposeActions postinstall [email protected]
77 silly decomposeActions finalize [email protected]
78 silly runTopLevelLifecycles Starting
79 silly executeActions Starting
80 silly install executeActions
81 silly doSerial global-install 0
82 silly doParallel fetch 1
83 verbose correctMkdir C:\Users\SW22\AppData\Roaming\npm-cache_locks correctMkdir not in flight; initializing
84 verbose lock using C:\Users\SW22\AppData\Roaming\npm-cache_locks\staging-85a62fcf0d5c7d53.lock for C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules.staging
85 silly doParallel extract 1
86 silly extract [email protected]
87 verbose unbuild node_modules.staging\node-expat-d3f6f1fb
88 silly gentlyRm C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules.staging\node-expat-d3f6f1fb is being purged from base C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce
89 verbose gentlyRm don't care about contents; nuking C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules.staging\node-expat-d3f6f1fb
90 verbose tar unpack C:\Users\SW22\AppData\Roaming\npm-cache\node-expat\2.3.15\package.tgz
91 verbose tar unpacking to C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules.staging\node-expat-d3f6f1fb
92 silly gentlyRm C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules.staging\node-expat-d3f6f1fb is being purged
93 verbose gentlyRm don't care about contents; nuking C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules.staging\node-expat-d3f6f1fb
94 silly gunzTarPerm modes [ '777', '666' ]
95 silly gunzTarPerm extractEntry package.json
96 silly gunzTarPerm modified mode [ 'package.json', 420, 438 ]
97 silly gunzTarPerm extractEntry README.md
98 silly gunzTarPerm modified mode [ 'README.md', 420, 438 ]
99 silly gunzTarPerm extractEntry LICENSE
100 silly gunzTarPerm modified mode [ 'LICENSE', 420, 438 ]
101 silly gunzTarPerm extractEntry binding.gyp
102 silly gunzTarPerm modified mode [ 'binding.gyp', 420, 438 ]
103 silly gunzTarPerm extractEntry deps/libexpat/README
104 silly gunzTarPerm modified mode [ 'deps/libexpat/README', 420, 438 ]
105 silly gunzTarPerm extractEntry deps/libexpat/doc/expat.png
106 silly gunzTarPerm modified mode [ 'deps/libexpat/doc/expat.png', 420, 438 ]
107 silly gunzTarPerm extractEntry deps/libexpat/doc/reference.html
108 silly gunzTarPerm modified mode [ 'deps/libexpat/doc/reference.html', 420, 438 ]
109 silly gunzTarPerm extractEntry deps/libexpat/doc/style.css
110 silly gunzTarPerm modified mode [ 'deps/libexpat/doc/style.css', 420, 438 ]
111 silly gunzTarPerm extractEntry deps/libexpat/doc/valid-xhtml10.png
112 silly gunzTarPerm modified mode [ 'deps/libexpat/doc/valid-xhtml10.png', 420, 438 ]
113 silly gunzTarPerm extractEntry deps/libexpat/doc/xmlwf.1
114 silly gunzTarPerm modified mode [ 'deps/libexpat/doc/xmlwf.1', 420, 438 ]
115 silly gunzTarPerm extractEntry deps/libexpat/doc/xmlwf.sgml
116 silly gunzTarPerm modified mode [ 'deps/libexpat/doc/xmlwf.sgml', 420, 438 ]
117 silly gunzTarPerm extractEntry deps/libexpat/COPYING
118 silly gunzTarPerm modified mode [ 'deps/libexpat/COPYING', 420, 438 ]
119 silly gunzTarPerm extractEntry deps/libexpat/Changes
120 silly gunzTarPerm modified mode [ 'deps/libexpat/Changes', 420, 438 ]
121 silly gunzTarPerm extractEntry deps/libexpat/ConfigureChecks.cmake
122 silly gunzTarPerm modified mode [ 'deps/libexpat/ConfigureChecks.cmake', 493, 511 ]
123 silly gunzTarPerm extractEntry deps/libexpat/MANIFEST
124 silly gunzTarPerm modified mode [ 'deps/libexpat/MANIFEST', 420, 438 ]
125 silly gunzTarPerm extractEntry deps/libexpat/Makefile.in
126 silly gunzTarPerm modified mode [ 'deps/libexpat/Makefile.in', 420, 438 ]
127 silly gunzTarPerm extractEntry deps/libexpat/CMake.README
128 silly gunzTarPerm modified mode [ 'deps/libexpat/CMake.README', 493, 511 ]
129 silly gunzTarPerm extractEntry deps/libexpat/aclocal.m4
130 silly gunzTarPerm modified mode [ 'deps/libexpat/aclocal.m4', 420, 438 ]
131 silly gunzTarPerm extractEntry deps/libexpat/amiga/expat_68k_handler_stubs.c
132 silly gunzTarPerm modified mode [ 'deps/libexpat/amiga/expat_68k_handler_stubs.c', 493, 511 ]
133 silly gunzTarPerm extractEntry deps/libexpat/amiga/Makefile
134 silly gunzTarPerm modified mode [ 'deps/libexpat/amiga/Makefile', 420, 438 ]
135 silly gunzTarPerm extractEntry deps/libexpat/amiga/expat.xml
136 silly gunzTarPerm modified mode [ 'deps/libexpat/amiga/expat.xml', 420, 438 ]
137 silly gunzTarPerm extractEntry deps/libexpat/amiga/expat_68k.c
138 silly gunzTarPerm modified mode [ 'deps/libexpat/amiga/expat_68k.c', 420, 438 ]
139 silly gunzTarPerm extractEntry deps/libexpat/amiga/expat_68k.h
140 silly gunzTarPerm modified mode [ 'deps/libexpat/amiga/expat_68k.h', 493, 511 ]
141 silly gunzTarPerm extractEntry deps/libexpat/amiga/README.txt
142 silly gunzTarPerm modified mode [ 'deps/libexpat/amiga/README.txt', 420, 438 ]
143 silly gunzTarPerm extractEntry deps/libexpat/amiga/expat_base.h
144 silly gunzTarPerm modified mode [ 'deps/libexpat/amiga/expat_base.h', 420, 438 ]
145 silly gunzTarPerm extractEntry deps/libexpat/amiga/expat_lib.c
146 silly gunzTarPerm modified mode [ 'deps/libexpat/amiga/expat_lib.c', 493, 511 ]
147 silly gunzTarPerm extractEntry deps/libexpat/amiga/expat_vectors.c
148 silly gunzTarPerm modified mode [ 'deps/libexpat/amiga/expat_vectors.c', 420, 438 ]
149 silly gunzTarPerm extractEntry deps/libexpat/amiga/include/inline4/expat.h
150 silly gunzTarPerm modified mode [ 'deps/libexpat/amiga/include/inline4/expat.h', 420, 438 ]
151 silly gunzTarPerm extractEntry deps/libexpat/amiga/include/interfaces/expat.h
152 silly gunzTarPerm modified mode [ 'deps/libexpat/amiga/include/interfaces/expat.h', 420, 438 ]
153 silly gunzTarPerm extractEntry deps/libexpat/amiga/include/libraries/expat.h
154 silly gunzTarPerm modified mode [ 'deps/libexpat/amiga/include/libraries/expat.h', 420, 438 ]
155 silly gunzTarPerm extractEntry deps/libexpat/amiga/include/proto/expat.h
156 silly gunzTarPerm modified mode [ 'deps/libexpat/amiga/include/proto/expat.h', 420, 438 ]
157 silly gunzTarPerm extractEntry deps/libexpat/amiga/launch.c
158 silly gunzTarPerm modified mode [ 'deps/libexpat/amiga/launch.c', 493, 511 ]
159 silly gunzTarPerm extractEntry deps/libexpat/bcb5/expatw.mak
160 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/expatw.mak', 420, 438 ]
161 silly gunzTarPerm extractEntry deps/libexpat/bcb5/README.txt
162 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/README.txt', 420, 438 ]
163 silly gunzTarPerm extractEntry deps/libexpat/bcb5/elements.bpf
164 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/elements.bpf', 420, 438 ]
165 silly gunzTarPerm extractEntry deps/libexpat/bcb5/elements.bpr
166 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/elements.bpr', 420, 438 ]
167 silly gunzTarPerm extractEntry deps/libexpat/bcb5/elements.mak
168 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/elements.mak', 420, 438 ]
169 silly gunzTarPerm extractEntry deps/libexpat/bcb5/expat.bpf
170 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/expat.bpf', 420, 438 ]
171 silly gunzTarPerm extractEntry deps/libexpat/bcb5/expat.bpr
172 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/expat.bpr', 420, 438 ]
173 silly gunzTarPerm extractEntry deps/libexpat/bcb5/expat.mak
174 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/expat.mak', 420, 438 ]
175 silly gunzTarPerm extractEntry deps/libexpat/bcb5/expat_static.bpf
176 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/expat_static.bpf', 420, 438 ]
177 silly gunzTarPerm extractEntry deps/libexpat/bcb5/expat_static.bpr
178 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/expat_static.bpr', 420, 438 ]
179 silly gunzTarPerm extractEntry deps/libexpat/bcb5/expat_static.mak
180 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/expat_static.mak', 420, 438 ]
181 silly gunzTarPerm extractEntry deps/libexpat/bcb5/expatw.bpf
182 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/expatw.bpf', 420, 438 ]
183 silly gunzTarPerm extractEntry deps/libexpat/bcb5/expatw.bpr
184 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/expatw.bpr', 420, 438 ]
185 silly gunzTarPerm extractEntry deps/libexpat/bcb5/all_projects.bpg
186 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/all_projects.bpg', 420, 438 ]
187 silly gunzTarPerm extractEntry deps/libexpat/bcb5/expatw_static.bpf
188 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/expatw_static.bpf', 420, 438 ]
189 silly gunzTarPerm extractEntry deps/libexpat/bcb5/expatw_static.bpr
190 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/expatw_static.bpr', 420, 438 ]
191 silly gunzTarPerm extractEntry deps/libexpat/bcb5/expatw_static.mak
192 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/expatw_static.mak', 420, 438 ]
193 silly gunzTarPerm extractEntry deps/libexpat/bcb5/libexpat_mtd.def
194 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/libexpat_mtd.def', 420, 438 ]
195 silly gunzTarPerm extractEntry deps/libexpat/bcb5/libexpatw_mtd.def
196 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/libexpatw_mtd.def', 420, 438 ]
197 silly gunzTarPerm extractEntry deps/libexpat/bcb5/makefile.mak
198 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/makefile.mak', 420, 438 ]
199 silly gunzTarPerm extractEntry deps/libexpat/bcb5/outline.bpf
200 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/outline.bpf', 420, 438 ]
201 silly gunzTarPerm extractEntry deps/libexpat/bcb5/outline.bpr
202 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/outline.bpr', 420, 438 ]
203 silly gunzTarPerm extractEntry deps/libexpat/bcb5/outline.mak
204 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/outline.mak', 420, 438 ]
205 silly gunzTarPerm extractEntry deps/libexpat/bcb5/setup.bat
206 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/setup.bat', 420, 438 ]
207 silly gunzTarPerm extractEntry deps/libexpat/bcb5/xmlwf.bpf
208 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/xmlwf.bpf', 420, 438 ]
209 silly gunzTarPerm extractEntry deps/libexpat/bcb5/xmlwf.bpr
210 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/xmlwf.bpr', 420, 438 ]
211 silly gunzTarPerm extractEntry deps/libexpat/bcb5/xmlwf.mak
212 silly gunzTarPerm modified mode [ 'deps/libexpat/bcb5/xmlwf.mak', 420, 438 ]
213 silly gunzTarPerm extractEntry deps/libexpat/configure
214 silly gunzTarPerm modified mode [ 'deps/libexpat/configure', 493, 511 ]
215 silly gunzTarPerm extractEntry deps/libexpat/configure.in
216 silly gunzTarPerm modified mode [ 'deps/libexpat/configure.in', 420, 438 ]
217 silly gunzTarPerm extractEntry deps/libexpat/conftools/PrintPath
218 silly gunzTarPerm modified mode [ 'deps/libexpat/conftools/PrintPath', 493, 511 ]
219 silly gunzTarPerm extractEntry deps/libexpat/conftools/ac_c_bigendian_cross.m4
220 silly gunzTarPerm modified mode [ 'deps/libexpat/conftools/ac_c_bigendian_cross.m4', 420, 438 ]
221 silly gunzTarPerm extractEntry deps/libexpat/conftools/config.guess
222 silly gunzTarPerm modified mode [ 'deps/libexpat/conftools/config.guess', 493, 511 ]
223 silly gunzTarPerm extractEntry deps/libexpat/conftools/config.sub
224 silly gunzTarPerm modified mode [ 'deps/libexpat/conftools/config.sub', 493, 511 ]
225 silly gunzTarPerm extractEntry deps/libexpat/conftools/expat.m4
226 silly gunzTarPerm modified mode [ 'deps/libexpat/conftools/expat.m4', 420, 438 ]
227 silly gunzTarPerm extractEntry deps/libexpat/conftools/get-version.sh
228 silly gunzTarPerm modified mode [ 'deps/libexpat/conftools/get-version.sh', 493, 511 ]
229 silly gunzTarPerm extractEntry deps/libexpat/conftools/install-sh
230 silly gunzTarPerm modified mode [ 'deps/libexpat/conftools/install-sh', 493, 511 ]
231 silly gunzTarPerm extractEntry deps/libexpat/conftools/ltmain.sh
232 silly gunzTarPerm modified mode [ 'deps/libexpat/conftools/ltmain.sh', 493, 511 ]
233 silly gunzTarPerm extractEntry deps/libexpat/conftools/mkinstalldirs
234 silly gunzTarPerm modified mode [ 'deps/libexpat/conftools/mkinstalldirs', 493, 511 ]
235 silly gunzTarPerm extractEntry deps/libexpat/CMakeLists.txt
236 silly gunzTarPerm modified mode [ 'deps/libexpat/CMakeLists.txt', 493, 511 ]
237 silly gunzTarPerm extractEntry deps/libexpat/examples/elements.c
238 silly gunzTarPerm modified mode [ 'deps/libexpat/examples/elements.c', 420, 438 ]
239 silly gunzTarPerm extractEntry deps/libexpat/examples/elements.dsp
240 silly gunzTarPerm modified mode [ 'deps/libexpat/examples/elements.dsp', 420, 438 ]
241 silly gunzTarPerm extractEntry deps/libexpat/examples/outline.c
242 silly gunzTarPerm modified mode [ 'deps/libexpat/examples/outline.c', 420, 438 ]
243 silly gunzTarPerm extractEntry deps/libexpat/examples/outline.dsp
244 silly gunzTarPerm modified mode [ 'deps/libexpat/examples/outline.dsp', 420, 438 ]
245 silly gunzTarPerm extractEntry deps/libexpat/expat.dsw
246 silly gunzTarPerm modified mode [ 'deps/libexpat/expat.dsw', 493, 511 ]
247 silly gunzTarPerm extractEntry deps/libexpat/expat.pc.in
248 silly gunzTarPerm modified mode [ 'deps/libexpat/expat.pc.in', 420, 438 ]
249 silly gunzTarPerm extractEntry deps/libexpat/expat_config.h
250 silly gunzTarPerm modified mode [ 'deps/libexpat/expat_config.h', 420, 438 ]
251 silly gunzTarPerm extractEntry deps/libexpat/expat_config.h.cmake
252 silly gunzTarPerm modified mode [ 'deps/libexpat/expat_config.h.cmake', 493, 511 ]
253 silly gunzTarPerm extractEntry deps/libexpat/expat_config.h.in
254 silly gunzTarPerm modified mode [ 'deps/libexpat/expat_config.h.in', 420, 438 ]
255 silly gunzTarPerm extractEntry deps/libexpat/lib/libexpat.def
256 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/libexpat.def', 420, 438 ]
257 silly gunzTarPerm extractEntry deps/libexpat/lib/Makefile.MPW
258 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/Makefile.MPW', 420, 438 ]
259 silly gunzTarPerm extractEntry deps/libexpat/lib/ascii.h
260 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/ascii.h', 420, 438 ]
261 silly gunzTarPerm extractEntry deps/libexpat/lib/asciitab.h
262 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/asciitab.h', 420, 438 ]
263 silly gunzTarPerm extractEntry deps/libexpat/lib/expat.dsp
264 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/expat.dsp', 420, 438 ]
265 silly gunzTarPerm extractEntry deps/libexpat/lib/expat.h
266 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/expat.h', 420, 438 ]
267 silly gunzTarPerm extractEntry deps/libexpat/lib/expat_external.h
268 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/expat_external.h', 420, 438 ]
269 silly gunzTarPerm extractEntry deps/libexpat/lib/expat_static.dsp
270 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/expat_static.dsp', 420, 438 ]
271 silly gunzTarPerm extractEntry deps/libexpat/lib/expatw.dsp
272 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/expatw.dsp', 420, 438 ]
273 silly gunzTarPerm extractEntry deps/libexpat/lib/expatw_static.dsp
274 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/expatw_static.dsp', 420, 438 ]
275 silly gunzTarPerm extractEntry deps/libexpat/lib/iasciitab.h
276 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/iasciitab.h', 420, 438 ]
277 silly gunzTarPerm extractEntry deps/libexpat/lib/internal.h
278 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/internal.h', 420, 438 ]
279 silly gunzTarPerm extractEntry deps/libexpat/lib/latin1tab.h
280 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/latin1tab.h', 420, 438 ]
281 silly gunzTarPerm extractEntry deps/libexpat/lib/amigaconfig.h
282 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/amigaconfig.h', 420, 438 ]
283 silly gunzTarPerm extractEntry deps/libexpat/lib/libexpatw.def
284 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/libexpatw.def', 420, 438 ]
285 silly gunzTarPerm extractEntry deps/libexpat/lib/macconfig.h
286 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/macconfig.h', 420, 438 ]
287 silly gunzTarPerm extractEntry deps/libexpat/lib/nametab.h
288 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/nametab.h', 420, 438 ]
289 silly gunzTarPerm extractEntry deps/libexpat/lib/utf8tab.h
290 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/utf8tab.h', 420, 438 ]
291 silly gunzTarPerm extractEntry deps/libexpat/lib/winconfig.h
292 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/winconfig.h', 420, 438 ]
293 silly gunzTarPerm extractEntry deps/libexpat/lib/xmlparse.c
294 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/xmlparse.c', 420, 438 ]
295 silly gunzTarPerm extractEntry deps/libexpat/lib/xmlrole.c
296 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/xmlrole.c', 420, 438 ]
297 silly gunzTarPerm extractEntry deps/libexpat/lib/xmlrole.h
298 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/xmlrole.h', 420, 438 ]
299 silly gunzTarPerm extractEntry deps/libexpat/lib/xmltok.c
300 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/xmltok.c', 420, 438 ]
301 silly gunzTarPerm extractEntry deps/libexpat/lib/xmltok.h
302 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/xmltok.h', 420, 438 ]
303 silly gunzTarPerm extractEntry deps/libexpat/lib/xmltok_impl.c
304 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/xmltok_impl.c', 420, 438 ]
305 silly gunzTarPerm extractEntry deps/libexpat/lib/xmltok_impl.h
306 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/xmltok_impl.h', 420, 438 ]
307 silly gunzTarPerm extractEntry deps/libexpat/lib/xmltok_ns.c
308 silly gunzTarPerm modified mode [ 'deps/libexpat/lib/xmltok_ns.c', 420, 438 ]
309 silly gunzTarPerm extractEntry deps/libexpat/libexpat.gyp
310 silly gunzTarPerm modified mode [ 'deps/libexpat/libexpat.gyp', 420, 438 ]
311 silly gunzTarPerm extractEntry deps/libexpat/m4/libtool.m4
312 silly gunzTarPerm modified mode [ 'deps/libexpat/m4/libtool.m4', 420, 438 ]
313 silly gunzTarPerm extractEntry deps/libexpat/m4/ltoptions.m4
314 silly gunzTarPerm modified mode [ 'deps/libexpat/m4/ltoptions.m4', 420, 438 ]
315 silly gunzTarPerm extractEntry deps/libexpat/m4/ltsugar.m4
316 silly gunzTarPerm modified mode [ 'deps/libexpat/m4/ltsugar.m4', 420, 438 ]
317 silly gunzTarPerm extractEntry deps/libexpat/m4/ltversion.m4
318 silly gunzTarPerm modified mode [ 'deps/libexpat/m4/ltversion.m4', 420, 438 ]
319 silly gunzTarPerm extractEntry deps/libexpat/m4/ltobsolete.m4
320 silly gunzTarPerm modified mode [ 'deps/libexpat/m4/lt
obsolete.m4', 420, 438 ]
321 silly gunzTarPerm extractEntry deps/libexpat/tests/README.txt
322 silly gunzTarPerm modified mode [ 'deps/libexpat/tests/README.txt', 420, 438 ]
323 silly gunzTarPerm extractEntry deps/libexpat/tests/benchmark/README.txt
324 silly gunzTarPerm modified mode [ 'deps/libexpat/tests/benchmark/README.txt', 420, 438 ]
325 silly gunzTarPerm extractEntry deps/libexpat/tests/benchmark/benchmark.c
326 silly gunzTarPerm modified mode [ 'deps/libexpat/tests/benchmark/benchmark.c', 420, 438 ]
327 silly gunzTarPerm extractEntry deps/libexpat/tests/benchmark/benchmark.dsp
328 silly gunzTarPerm modified mode [ 'deps/libexpat/tests/benchmark/benchmark.dsp', 420, 438 ]
329 silly gunzTarPerm extractEntry deps/libexpat/tests/benchmark/benchmark.dsw
330 silly gunzTarPerm modified mode [ 'deps/libexpat/tests/benchmark/benchmark.dsw', 420, 438 ]
331 silly gunzTarPerm extractEntry deps/libexpat/tests/chardata.c
332 silly gunzTarPerm modified mode [ 'deps/libexpat/tests/chardata.c', 420, 438 ]
333 silly gunzTarPerm extractEntry deps/libexpat/tests/chardata.h
334 silly gunzTarPerm modified mode [ 'deps/libexpat/tests/chardata.h', 420, 438 ]
335 silly gunzTarPerm extractEntry deps/libexpat/tests/minicheck.c
336 silly gunzTarPerm modified mode [ 'deps/libexpat/tests/minicheck.c', 420, 438 ]
337 silly gunzTarPerm extractEntry deps/libexpat/tests/minicheck.h
338 silly gunzTarPerm modified mode [ 'deps/libexpat/tests/minicheck.h', 420, 438 ]
339 silly gunzTarPerm extractEntry deps/libexpat/tests/runtests.c
340 silly gunzTarPerm modified mode [ 'deps/libexpat/tests/runtests.c', 420, 438 ]
341 silly gunzTarPerm extractEntry deps/libexpat/tests/runtestspp.cpp
342 silly gunzTarPerm modified mode [ 'deps/libexpat/tests/runtestspp.cpp', 420, 438 ]
343 silly gunzTarPerm extractEntry deps/libexpat/tests/xmltest.sh
344 silly gunzTarPerm modified mode [ 'deps/libexpat/tests/xmltest.sh', 493, 511 ]
345 silly gunzTarPerm extractEntry deps/libexpat/version.c
346 silly gunzTarPerm modified mode [ 'deps/libexpat/version.c', 420, 438 ]
347 silly gunzTarPerm extractEntry deps/libexpat/vms/README.vms
348 silly gunzTarPerm modified mode [ 'deps/libexpat/vms/README.vms', 420, 438 ]
349 silly gunzTarPerm extractEntry deps/libexpat/vms/descrip.mms
350 silly gunzTarPerm modified mode [ 'deps/libexpat/vms/descrip.mms', 420, 438 ]
351 silly gunzTarPerm extractEntry deps/libexpat/vms/expat_config.h
352 silly gunzTarPerm modified mode [ 'deps/libexpat/vms/expat_config.h', 420, 438 ]
353 silly gunzTarPerm extractEntry deps/libexpat/win32/MANIFEST.txt
354 silly gunzTarPerm modified mode [ 'deps/libexpat/win32/MANIFEST.txt', 420, 438 ]
355 silly gunzTarPerm extractEntry deps/libexpat/win32/README.txt
356 silly gunzTarPerm modified mode [ 'deps/libexpat/win32/README.txt', 420, 438 ]
357 silly gunzTarPerm extractEntry deps/libexpat/win32/expat.iss
358 silly gunzTarPerm modified mode [ 'deps/libexpat/win32/expat.iss', 420, 438 ]
359 silly gunzTarPerm extractEntry deps/libexpat/xmlwf/xmlfile.h
360 silly gunzTarPerm modified mode [ 'deps/libexpat/xmlwf/xmlfile.h', 493, 511 ]
361 silly gunzTarPerm extractEntry deps/libexpat/xmlwf/codepage.c
362 silly gunzTarPerm modified mode [ 'deps/libexpat/xmlwf/codepage.c', 493, 511 ]
363 silly gunzTarPerm extractEntry deps/libexpat/xmlwf/ct.c
364 silly gunzTarPerm modified mode [ 'deps/libexpat/xmlwf/ct.c', 493, 511 ]
365 silly gunzTarPerm extractEntry deps/libexpat/xmlwf/filemap.h
366 silly gunzTarPerm modified mode [ 'deps/libexpat/xmlwf/filemap.h', 493, 511 ]
367 silly gunzTarPerm extractEntry deps/libexpat/xmlwf/readfilemap.c
368 silly gunzTarPerm modified mode [ 'deps/libexpat/xmlwf/readfilemap.c', 493, 511 ]
369 silly gunzTarPerm extractEntry deps/libexpat/xmlwf/unixfilemap.c
370 silly gunzTarPerm modified mode [ 'deps/libexpat/xmlwf/unixfilemap.c', 493, 511 ]
371 silly gunzTarPerm extractEntry deps/libexpat/xmlwf/win32filemap.c
372 silly gunzTarPerm modified mode [ 'deps/libexpat/xmlwf/win32filemap.c', 493, 511 ]
373 silly gunzTarPerm extractEntry deps/libexpat/xmlwf/xmlfile.c
374 silly gunzTarPerm modified mode [ 'deps/libexpat/xmlwf/xmlfile.c', 493, 511 ]
375 silly gunzTarPerm extractEntry deps/libexpat/xmlwf/codepage.h
376 silly gunzTarPerm modified mode [ 'deps/libexpat/xmlwf/codepage.h', 493, 511 ]
377 silly gunzTarPerm extractEntry deps/libexpat/xmlwf/xmlmime.c
378 silly gunzTarPerm modified mode [ 'deps/libexpat/xmlwf/xmlmime.c', 493, 511 ]
379 silly gunzTarPerm extractEntry deps/libexpat/xmlwf/xmlmime.h
380 silly gunzTarPerm modified mode [ 'deps/libexpat/xmlwf/xmlmime.h', 493, 511 ]
381 silly gunzTarPerm extractEntry deps/libexpat/xmlwf/xmltchar.h
382 silly gunzTarPerm modified mode [ 'deps/libexpat/xmlwf/xmltchar.h', 493, 511 ]
383 silly gunzTarPerm extractEntry deps/libexpat/xmlwf/xmlurl.h
384 silly gunzTarPerm modified mode [ 'deps/libexpat/xmlwf/xmlurl.h', 493, 511 ]
385 silly gunzTarPerm extractEntry deps/libexpat/xmlwf/xmlwf.c
386 silly gunzTarPerm modified mode [ 'deps/libexpat/xmlwf/xmlwf.c', 493, 511 ]
387 silly gunzTarPerm extractEntry deps/libexpat/xmlwf/xmlwf.dsp
388 silly gunzTarPerm modified mode [ 'deps/libexpat/xmlwf/xmlwf.dsp', 493, 511 ]
389 silly gunzTarPerm extractEntry deps/libexpat/xmlwf/xmlwin32url.cxx
390 silly gunzTarPerm modified mode [ 'deps/libexpat/xmlwf/xmlwin32url.cxx', 493, 511 ]
391 silly gunzTarPerm extractEntry lib/node-expat.js
392 silly gunzTarPerm modified mode [ 'lib/node-expat.js', 420, 438 ]
393 silly gunzTarPerm extractEntry node-expat.cc
394 silly gunzTarPerm modified mode [ 'node-expat.cc', 420, 438 ]
395 silly gentlyRm C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules.staging\node-expat-d3f6f1fb\node_modules is being purged
396 verbose gentlyRm don't care about contents; nuking C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules.staging\node-expat-d3f6f1fb\node_modules
397 silly doParallel preinstall 1
398 silly preinstall [email protected]
399 info lifecycle [email protected]preinstall: [email protected]
400 silly lifecycle [email protected]
preinstall: no script for preinstall, continuing
401 silly doReverseSerial remove 0
402 silly doSerial move 0
403 silly doSerial finalize 1
404 silly finalize C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat
405 silly doSerial build 1
406 silly build [email protected]
407 info linkStuff [email protected]
408 silly linkStuff [email protected] has C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules as its parent node_modules
409 verbose linkBins [email protected]
410 verbose linkMans [email protected]
411 silly doSerial global-link 0
412 silly doParallel update-linked 0
413 silly doSerial install 1
414 silly install [email protected]
415 info lifecycle [email protected]install: [email protected]
416 verbose lifecycle [email protected]
install: unsafe-perm in lifecycle true
417 verbose lifecycle [email protected]install: PATH: C:\Users\SW22\AppData\Roaming\npm\node_modules\npm\bin\node-gyp-bin;C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat\node_modules.bin;C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules.bin;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Program Files\Microsoft SQL Server\110\Tools\Binn;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn;C:\Program Files\Microsoft SQL Server\100\Tools\Binn;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn;C:\Program Files\nodejs;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit;C:\Program Files\Git\cmd;C:\wamp64\bin\php\php5.6.25;C:\ProgramData\ComposerSetup\bin;C:\Program Files\Microsoft\Web Platform Installer;C:\Users\SW22.windows-build-tools\python27;C:\Program Files\nodejs\node_modules\npm\bin\node-gyp-bin;C:\Users\SW22\AppData\Roaming\npm\node_modules\windows-build-tools\node_modules.bin;C:\Users\SW22\AppData\Roaming\npm\node_modules.bin;C:\Users\SW22\AppData\Roaming\npm;C:\Program Files (x86)\Microsoft VS Code\bin;C:\Users\SW22\AppData\Roaming\Composer\vendor\bin
418 verbose lifecycle [email protected]
install: CWD: C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat
419 silly lifecycle [email protected]install: Args: [ '/d /s /c', 'node-gyp rebuild' ]
420 silly lifecycle [email protected]
install: Returned: code: 1 signal: null
421 info lifecycle [email protected]~install: Failed to exec install script
422 verbose unlock done using C:\Users\SW22\AppData\Roaming\npm-cache_locks\staging-85a62fcf0d5c7d53.lock for C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules.staging
423 silly rollbackFailedOptional Starting
424 silly gentlyRm C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat is being purged from base C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce
425 verbose gentlyRm don't care about contents; nuking C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat
426 silly gentlyRm C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat is being purged from base C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce
427 verbose gentlyRm don't care about contents; nuking C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat
428 silly gentlyRm C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat is being purged from base C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce
429 verbose gentlyRm don't care about contents; nuking C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat
430 silly gentlyRm C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat is being purged from base C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce
431 verbose gentlyRm don't care about contents; nuking C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat
432 silly gentlyRm C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat is being purged from base C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce
433 verbose gentlyRm don't care about contents; nuking C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat
434 silly gentlyRm C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat is being purged from base C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce
435 verbose gentlyRm don't care about contents; nuking C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat
436 silly gentlyRm C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat is being purged from base C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce
437 verbose gentlyRm don't care about contents; nuking C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat
438 silly gentlyRm C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat is being purged from base C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce
439 verbose gentlyRm don't care about contents; nuking C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat
440 silly vacuum-fs purging C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat
441 silly vacuum-fs purging C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat
442 silly vacuum-fs purging C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat
443 silly vacuum-fs purging C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat
444 silly vacuum-fs purging C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat
445 silly vacuum-fs purging C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat
446 silly vacuum-fs purging C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat
447 silly vacuum-fs purging C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules\node-expat
448 silly vacuum-fs quitting because other entries in C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules
449 silly vacuum-fs quitting because other entries in C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules
450 silly vacuum-fs quitting because other entries in C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules
451 silly vacuum-fs quitting because other entries in C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules
452 silly vacuum-fs quitting because other entries in C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules
453 silly vacuum-fs quitting because other entries in C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules
454 silly vacuum-fs quitting because other entries in C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules
455 silly vacuum-fs quitting because other entries in C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce\node_modules
456 silly rollbackFailedOptional Finishing
457 silly runTopLevelLifecycles Finishing
458 silly install printInstalled
459 warn [email protected] No repository field.
460 verbose stack Error: [email protected] install: node-gyp rebuild
460 verbose stack Exit status 1
460 verbose stack at EventEmitter. (C:\Users\SW22\AppData\Roaming\npm\node_modules\npm\lib\utils\lifecycle.js:279:16)
460 verbose stack at emitTwo (events.js:106:13)
460 verbose stack at EventEmitter.emit (events.js:191:7)
460 verbose stack at ChildProcess. (C:\Users\SW22\AppData\Roaming\npm\node_modules\npm\lib\utils\spawn.js:40:14)
460 verbose stack at emitTwo (events.js:106:13)
460 verbose stack at ChildProcess.emit (events.js:191:7)
460 verbose stack at maybeClose (internal/child_process.js:877:16)
460 verbose stack at Process.ChildProcess._handle.onexit (internal/child_process.js:226:5)
461 verbose pkgid [email protected]
462 verbose cwd C:\wamp64\www\Test_RIG_v2\rd_svc-test-rig-open-souce
463 verbose Windows_NT 6.1.7601
464 verbose argv "C:\Program Files\nodejs\node.exe" "C:\Users\SW22\AppData\Roaming\npm\node_modules\npm\bin\npm-cli.js" "i" "node-expat"
465 verbose node v6.9.4
466 verbose npm v4.4.1
467 error code ELIFECYCLE
468 error errno 1
469 error [email protected] install: node-gyp rebuild
469 error Exit status 1
470 error Failed at the [email protected] install script 'node-gyp rebuild'.
470 error Make sure you have the latest version of node.js and npm installed.
470 error If you do, this is most likely a problem with the node-expat package,
470 error not with npm itself.
470 error Tell the author that this fails on your system:
470 error node-gyp rebuild
470 error You can get information on how to open an issue for this project with:
470 error npm bugs node-expat
470 error Or if that isn't available, you can get their info via:
470 error npm owner ls node-expat
470 error There is likely additional logging output above.
471 verbose exit [ 1, true ]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

8 participants