Skip to content

Commit 277185b

Browse files
committed
vscode
1 parent 92df7b1 commit 277185b

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ npm-debug.log
44
*~
55
*.log
66
.idea
7-
.vscode

.vscode/launch.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"args": [
9+
"--colors",
10+
"${workspaceFolder}/test",
11+
"-R",
12+
"spec",
13+
"--exit"
14+
],
15+
"internalConsoleOptions": "openOnSessionStart",
16+
"name": "Mocha Tests",
17+
"program": "./node_modules/mocha/bin/mocha.js",
18+
"request": "launch",
19+
"skipFiles": [
20+
"<node_internals>/**"
21+
],
22+
"type": "node"
23+
}
24+
]
25+
}

lib/docker.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ Docker.prototype.buildImage = function(file, opts, callback) {
313313
});
314314
});
315315
} else {
316-
dial(null, callback);
316+
dial(callback);
317317
}
318318
}
319319

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)