Alain Schlesser
Alain Schlesser
Given that WP 4.9 would be the lowest WordPress version to officially support PHP 7.2 and given that I would not want to put ourselves in the position where we...
Thanks for the work on this, @mostafasoufi ! I'm not merging this right now, as we're currently in discussions about the future of this script in general, and whether we...
@westonruter My first guess would be that the SSH connection does not allocate a full TTY, which would mean that interactive features (like pagers) will not work. You can try...
From what I've found so far, it seems like adding the `-i` flag to the `docker exec` command that WP-CLI is executing helps. This is to keep the execution interactive....
  When I execute this same command without the `-i` flag, it shows the `wp shell` prompt, but it is immediately dead and does not accept any input. Any...
Ok, the question then is whether adding the `-i` breaks other things that shan't be broken...
@ernilambar I suggest to go with the tweak that @swissspidy mentioned but also combine it with an early processing of the flag like so: ``` $format = Utils\get_flag_value( $assoc_args, 'format',...
/cc @johnbillion
We could add a helper that wraps the `posix_geteuid()` function (and does the compatibility check, returning something like `-1` if not available). Then the tests could check the order/timing of...
@mrsdizzie Yes, that looks like what we need. If you add it here, I'll merge.