-
Notifications
You must be signed in to change notification settings - Fork 19
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
Add custom transport to allow wrapping with any command #61
base: main
Are you sure you want to change the base?
Conversation
*/ | ||
public function check(SiteAliasInterface $siteAlias) | ||
{ | ||
return $siteAlias->has('command'); |
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.
This seems too generic
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.
@greg-1-anderson, I agree. I hesitated to put it in but on thinking more, it started making sense as the functionality is really that generic. That said, I am open to alternatives.
Codecov Report
@@ Coverage Diff @@
## main #61 +/- ##
============================================
- Coverage 78.41% 78.19% -0.23%
- Complexity 164 172 +8
============================================
Files 18 20 +2
Lines 417 431 +14
============================================
+ Hits 327 337 +10
- Misses 90 94 +4
Continue to review full report at Codecov.
|
Overview
This pull request:
Summary
This adds a new option to site aliases which lets users specify any command to wrap invoked processes (such as drush).
Description
More details in #52.