Fix error message when invoking wrong command.

Summary: @​public

The message we were showing before didn't include correctly the commands the private cli had.

Reviewed By: @vjeux

Differential Revision: D2530164

fb-gh-sync-id: 2b00c74cb41441686587588632815c5948f3a864
This commit is contained in:
Martín Bigio 2015-10-12 12:57:46 -07:00 committed by facebook-github-bot-7
parent 3561c9ed2b
commit 31aacd78e8

View File

@ -61,4 +61,7 @@ function help() {
return Promise.resolve(); return Promise.resolve();
} }
module.exports.run = run; module.exports = {
commands: documentedCommands,
run: run,
};