Skip to content
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.

run.js reports how it's called #605

Merged
merged 1 commit into from
Oct 9, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tests/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ program.command('deploy')
.description('Deploy all apps')
.action(deploy);

// report how we're called, mainly to help debug CI environments
console.log(process.argv.join(' '));
console.log();

program.parse(process.argv);

function test (cmd) {
Expand Down