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:
Diffstat (limited to 'node_modules/opener/opener.js')
-rwxr-xr-xnode_modules/opener/opener.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/node_modules/opener/opener.js b/node_modules/opener/opener.js
index 5477da52b..3f95d0635 100755
--- a/node_modules/opener/opener.js
+++ b/node_modules/opener/opener.js
@@ -38,7 +38,7 @@ function opener(args, options, callback) {
args = ["/c", "start", '""'].concat(args);
}
- childProcess.execFile(command, args, options, callback);
+ return childProcess.execFile(command, args, options, callback);
}
// Export `opener` for programmatic access.