-
Notifications
You must be signed in to change notification settings - Fork 6
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 additional make target - make patch #4
base: master
Are you sure you want to change the base?
Conversation
Updated to add the make patch target and the Runtime method to carry out the task.
HI @wheldom01, thanks for your contribution. I love the idea and I'd love to get us to a place where we can use it. I have two primary concerns with your patch:
Thanks very much! I look forward to hearing your feedback. :) Best, |
Hi Shawn, I like your idea of being able to handle different versions of RT during However the one below may not be quite so :( https://github.com/bestpractical/rt-extension-assetsql/blob/master/patches/rt-4.4.2-later.patch I'm assuming that this patch applies to versions of rt >= 4.4.2 is that If that is the case then how about the following as a directory naming patches/4.4/ => Apply *.patch files to all 4.4 range As for RTxPatch and system command concatenation, your suggestion is a
again more than happy to change to your suggestion. All the best Martin On 2016-11-16 16:12, Shawn M Moore wrote:
|
Convert to use list style system call Fixed regex matching for files ending .patch Added functionality to apply patches to specific versions by organising patches into directories with following naming i.e: >4.2 - Apply to RT versions after 4.2 <4.4 - Apply to RT versions before 4.4 4.4.1 - Apply to RT 4.4.1 only 4.2-4.4 - Apply to RT versions between and including Directories containing patches that don't meet the above naming convention are applied to all RT versions Directory structures can be nested
Hi @sartak, I've fixed the regex issue and converted the system command to use the list invocation method as you suggested. I've also had a stab at the handling of patches for different RT versions. I'd be interested to hear your thoughts. All the best Martin |
… vane as uninstall
Hi @sartak, The final patch adds the ability to remove the relevant patches. Best Regards Martin |
Updated to add the make patch target and the Runtime method to carry out the task.