From d65f257f3963eaa0cc2e2bed8d94e3713cb260ed Mon Sep 17 00:00:00 2001 From: Andreas Tolfsen Date: Mon, 9 Dec 2013 15:07:14 +0000 Subject: [PATCH] Wrap command in rake's sh function --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 267320a96c3a0..d511bc3f914d1 100644 --- a/Rakefile +++ b/Rakefile @@ -808,7 +808,7 @@ end task :authors do puts "Generating AUTHORS file" - `(git log --use-mailmap --format="%aN <%aE>" ; cat .OLD_AUTHORS) | sort -uf > AUTHORS` + sh "(git log --use-mailmap --format='%aN <%aE>' ; cat .OLD_AUTHORS) | sort -uf > AUTHORS" end at_exit do