diff options
author | Luke Kanies <luke@madstop.com> | 2009-02-10 14:30:24 -0600 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2009-02-11 08:36:31 +1100 |
commit | a9f34aff856550e091721ee563d034ba2e1e22bb (patch) | |
tree | aba9bb58bdb288642172e57167e1de2b35a8ba54 | |
parent | db05c00af042cce1f09640071706efbc82742a01 (diff) | |
download | puppet-a9f34aff856550e091721ee563d034ba2e1e22bb.tar.gz puppet-a9f34aff856550e091721ee563d034ba2e1e22bb.tar.xz puppet-a9f34aff856550e091721ee563d034ba2e1e22bb.zip |
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 <luke@madstop.com>
-rw-r--r-- | Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |