From a9f34aff856550e091721ee563d034ba2e1e22bb Mon Sep 17 00:00:00 2001 From: Luke Kanies Date: Tue, 10 Feb 2009 14:30:24 -0600 Subject: Fixing the Rakefile to use 'git format-patch'. Some releases of git no longer install hundreds of binaries, so the 'git-format-patch' binary is unavailable. Signed-off-by: Luke Kanies --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 16c6488cf..34a60ea96 100644 --- a/Rakefile +++ b/Rakefile @@ -193,7 +193,7 @@ task :mail_patches do type, parent, name = $1, $2, $3 # Create all of the patches - sh "git-format-patch -C -M -s -n #{parent}..HEAD" + sh "git format-patch -C -M -s -n #{parent}..HEAD" # And then mail them out. -- cgit