Greg Anderson
Greg Anderson
Just noticed this issue; didn't see the mention earlier. If folks who are having this problem run: ``` php -r 'var_export(stream_isatty(\STDOUT));' ``` Do you get `true` or `false`? I get...
> It only happens when using drush on my local machine to access remote sites, e.g. drush @site.env cr I missed this critical bit if information! Take a look at...
I don't know ssh config off the top of my head; I just know that if I ssh from my Mac to an Ubuntu box, I get a tty, but...
Sounds like the ssh command requires a tty, although I don't specifically remember, and in theory this should not be necessary. Does `drush -n @site.dev ssh pwd` behave the same...
`--tail` and `--json` are inherently incompatible, as you'd never be able to emit the closing punctuation (`}` or more likely `]`) if in "tail" mode. We could potentially interpret `--json`...
See also [Drush IQ](https://www.drupal.org/project/drush_iq), which has similar features to bandaid, plus commands to submit patches and module releases to drupal.org. Drush IQ worked great on the Drupal 6 version of...
With Drush IQ, you can add a patch, make local changes, and then submit a new patch back to the original issue, with an interdiff. The interdiff is broken at...
@davereid I don't have a bitbucket account yet, but if you are interested in doing any collaboration with Drush IQ and Drush Patchfile, I'd be up for it. Seems to...
Upgrading is as easy as changing the required dependency from webflo/drupal-core-strict to drupal/core-recommended, so it might be reasonable to just abandon the tag here. Another alternative would be to just...
Another thing you could do here is make webflo/drupal-core-strict require `"drupal/core-recommended": "self.verson"` and nothing else. Then all you would need to do is tag the same commit every time a...