Skip to content

Commit 623f0c2

Browse files
committed
🏁 windows debugging code
1 parent 15661ca commit 623f0c2

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.evergreen.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,14 @@ functions:
6363
script: |
6464
set -ev
6565
export PATH="${node_path}:$PATH"
66+
ls -alh ${node_path}
6667
test -n "${add_environment|}" && export ${add_environment|}
6768
${npm|npm} version --json
6869
${npm|npm} config set loglevel error
6970
${npm|npm} config -g list
70-
${npm|npm} install
71+
which -a npm
72+
node -p process.env
73+
# ${npm|npm} install
7174
7275
# For Windows: retrieve a fake "signtool.exe" which proxies to notary-service,
7376
# and remove the real one from our path. Must run after "npm install"

gulpfile.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ var notify = require('./tasks/notify');
2828
var format = require('util').format;
2929
var pkg = require('./package.json');
3030

31+
var which = require('which');
32+
cnosole.log('which npm?', which.async('npm', {all: true}));
33+
3134
// Platform specific tasks
3235
var platform = require(path.join(__dirname, 'tasks', process.platform));
3336

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"release": "gulp release",
6464
"test": "mocha",
6565
"ci": "npm run check && npm test && npm run release",
66-
"check": "mongodb-js-precommit ./*.js src/{**/*.js,*.js} test/{**/*.js,*.js} tasks/*.js",
66+
"check": "mongodb-js-precommit --debug ./*.js src/{**/*.js,*.js} test/{**/*.js,*.js} tasks/*.js",
6767
"fmt": "mongodb-js-fmt ./*.js src/{**/*.js,*.js} test/{**/*.js,*.js} tasks/*.js"
6868
},
6969
"pre-commit": [

0 commit comments

Comments
 (0)