Create a directory and download the patch file:
mkdir ~/.drush/patches && cd ~/.drush/patches && wget https://www.drupal.org/files/issues/1038652-128.patch
Create a file with `nano ~/.drush/patch-comment.make` and paste:
; Specify the version of Drupal being used. core = 7.x ; Specify the api version of Drush Make. api = 2 ; Drupal core patches can be add like contrib patches: projects[drupal][patch][] = patches/1038652-128.patch
Then in Drupal root run:
drush make ~/.drush/patch-comment.make fix-sl
That's it!
Based on: https://dev.acquia.com/blog/patching-drush-make and https://www.webomelette.com/how-use-drush-make-your-daily-routine
Alternative method: https://bitbucket.org/davereid/drush-patchfile
- Log in to post comments