Skip to content

Commit 9851a19

Browse files
author
Ronen Babayoff
committedMar 11, 2015
Change async command example to use CLI.done()
1 parent e9f6ebd commit 9851a19

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed
 

‎README.md

+4-6
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,8 @@ Here is an example async [ls](https://github.com/practicalmeteor/meteor-mcli/blo
7979
var child_process = Npm.require('child_process');
8080

8181
// When you register your command as an async one,
82-
// your command will be called with a done function as a 2nd argument
83-
// which you need to call when your command has completed.
84-
var lsCommand = function(options, done) {
82+
// you need to call CLI.done() when your command has completed.
83+
var lsCommand = function(options) {
8584

8685
var ls = child_process.spawn("ls");
8786

@@ -98,9 +97,8 @@ var lsCommand = function(options, done) {
9897
// You need to wait on a child process's close event, and not on it's exit event,
9998
// to make sure it has exited and all it's output has been delivered to you.
10099
ls.on("close", function(code, signal){
101-
// Call done() to let CLI know your command has completed and it can exit.
102-
// You can also call CLI.done() instead
103-
done();
100+
// Calling CLI.done() will let CLI know your command has completed and it can exit.
101+
CLI.done();
104102
});
105103
};
106104

‎starter-mcli-app/.meteor/versions

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ minimongo@1.0.6
1616
mongo@1.0.11
1717
ordered-dict@1.0.2
1818
practicalmeteor:chai@1.9.2_3
19-
practicalmeteor:loglevel@1.1.0_3
19+
practicalmeteor:loglevel@1.2.0_1
2020
practicalmeteor:mcli@1.1.4
2121
practicalmeteor:underscore.string@2.3.3_3
2222
random@1.0.2

‎starter-mcli-app/server/LsCommand.js

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
// Example of an async command that spawns an ls child process,
2-
// waits for it to exit, and then calls done
2+
// waits for it to exit, and then calls CLI.done()
33

44
var log = loglevel.createLogger('ls', 'debug');
55

66
var child_process = Npm.require('child_process');
77

8-
var lsCommand = function(options, done) {
8+
// When you register your command as an async one,
9+
// you need to call CLI.done() when your command has completed.
10+
var lsCommand = function(options) {
911

1012
log.debug('spawning ls');
1113
var ls = child_process.spawn("ls");
@@ -21,11 +23,14 @@ var lsCommand = function(options, done) {
2123
process.stderr.write(data);
2224
});
2325

26+
// You need to wait on a child process's close event, and not on it's exit event,
27+
// to make sure it has exited and all it's output has been delivered to you.
2428
ls.on("close", function(code, signal){
25-
// Or, you can call CLI.done() instead
2629
log.debug('ls closed');
27-
done();
30+
// Calling CLI.done() will let CLI know your command has completed and it can exit.
31+
CLI.done();
2832
});
2933
};
3034

35+
// When registering an async command, pass in true as the last argument.
3136
CLI.registerCommand('ls', lsCommand, {}, true);

0 commit comments

Comments
 (0)
Please sign in to comment.