-
Notifications
You must be signed in to change notification settings - Fork 1
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
Mc 37324: Add fallback to 'patch' command when 'git' command is not available #2
base: develop
Are you sure you want to change the base?
Conversation
…vailable - Move exception handling from patch command implementations
…vailable - Fix unit test
…vailable - Add unit test
src/Shell/Command/GitDriver.php
Outdated
$this->processFactory->create(['git', 'apply', '--check'], $patch) | ||
->mustRun(); | ||
} catch (ProcessFailedException $exception) { | ||
throw new PatchCommandException('Patch cannot be applied', $exception->getCode(), $exception); |
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 error message contains Git error output that is parsed further
$this->conflictProcessor->process($output, $patch, $appliedPatches, $exception->getMessage()); |
$this->renderer->formatErrorOutput($exception->getMessage()) |
Actually here
if (preg_match('#^.*?Error Output:(?<errors>.*?)$#is', $errorOutput, $matches)) { |
We need to show the customer error details. Maybe it makes sense to add them in this class
…vailable - Remove -f flag in patch command - Fix services configuration
…vailable - Fix services configuration
…vailable - Fix error message formatting
…vailable - Remove formatErrorOutput
…vailable - Remove dead code
/** | ||
* Git patch driver exception | ||
*/ | ||
class GitDriverException extends DriverException |
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.
GitDriverException and PatchDriverException has the same implementation
Do we need them both? Or just use DriverException?
…vailable - Remove redundant exceptions
…cloud-patches-78 [Imported] MC 37324: Add fallback to 'patch' command when 'git' command is not available
Description
Fixed Issues (if relevant)
Manual testing scenarios
Release notes
For user-facing changes, add a meaningful release note. For examples, see Magento Cloud Patches release notes.
Associated documentation updates
Add link to Magento DevDocs PR or Issue, if needed.
Contribution checklist