I would like to have curl support... The reason is my favorite command to applying a patch from drupal.org in one line is the following...
curl {URL_OF_PATCH} | git apply
But this doesn't work, and is is SUCH a pain in the ass to type sudo apt-get install curl :)
Comments
Comment #1
travist commentedapt-get installis SO last year...Comment #2
glennpratt commentedwget -qO- {URL_OF_PATCH} | git applywget and curl can usually be coaxed into acting like the other.
Quick google search didn't turn up a curl cookbook, probably too simple. Only install it in a dev role if you want it, doesn't need to be in all roles.
Comment #3
travist commentedOh alright fine!