-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds --show option to list files being built on run/push #92
base: master
Are you sure you want to change the base?
Conversation
@@ -61,6 +55,20 @@ var argv = require("nomnom") | |||
|
|||
argv.verbose = !argv.quiet; | |||
|
|||
if (argv.show && !argv.quiet) { | |||
process.env.DEBUG = '*'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably shouldn't do it this way.
single: argv.single | ||
}, function (err) { | ||
client.run(pushpath, ['tessel', pushpath].concat(argv.arguments || []) | ||
, argv |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
don't pass in argv, they're not the same set of arguments.
I'm not sure why this isn't part of |
single: argv.single | ||
}, function () { | ||
client.run(pushpath, ['tessel', pushpath].concat(argv.arguments || []) | ||
, argv |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here, don't replace this with argv.
fixes #90
Also removed deprecated
tessel run --version
command.