We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
WP-CLI global options and single command options, like --skip-plugins aren't recognized it seems.
--skip-plugins
Examples: terminus remote:wp site.env wp search-replace search-string replace string --dry-run terminus remote:wp site.env wp search-replace plugin list --format=json
terminus remote:wp site.env wp search-replace search-string replace string --dry-run
terminus remote:wp site.env wp search-replace plugin list --format=json
Returns respectively
[Symfony\Component\Console\Exception\RuntimeException] The "--dry-run" option does not exist.
[Symfony\Component\Console\Exception\RuntimeException] The "--format" option does not exist.
Test out those commands above with Terminus 1.0
The text was updated successfully, but these errors were encountered:
The syntax for this has changed. Use the -- argument separator to divide options intended for Terminus from options intended for wp-cli.
--
ex:
terminus remote:wp site.env -- search-replace "search string" "replace string" --dry-run
Sorry, something went wrong.
--dry-run may not work. See #1505
--dry-run
No branches or pull requests
Expected behavior
WP-CLI global options and single command options, like
--skip-plugins
aren't recognized it seems.Examples:
terminus remote:wp site.env wp search-replace search-string replace string --dry-run
terminus remote:wp site.env wp search-replace plugin list --format=json
Actual behavior
Returns respectively
Steps to reproduce the behavior
Test out those commands above with Terminus 1.0
The text was updated successfully, but these errors were encountered: