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

travist’s picture

apt-get install is SO last year...

glennpratt’s picture

wget -qO- {URL_OF_PATCH} | git apply

wget 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.

travist’s picture

Status: Active » Closed (won't fix)

Oh alright fine!