You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
something like Cmd::set_verbose(self, bool) that if set will print to stderr $ ENV1=KEY1 ENV2=KEY2 ... CMD ARGS this will help debug errors when setting enviroment variables
The text was updated successfully, but these errors were encountered:
Makes sense to me! We already have Cmd::quiet / set_quiet which controls echoing of the command itself. One design question is the specific naming of methods. I think fn quiet is already wrong, as it is very unclear what that does. So perhaps we can deprecate that and come up with some clearer API
something like
Cmd::set_verbose(self, bool)
that if set will print to stderr$ ENV1=KEY1 ENV2=KEY2 ... CMD ARGS
this will help debug errors when setting enviroment variablesThe text was updated successfully, but these errors were encountered: