From ed07890e4ddd734389a46620cc8d940964d99208 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mislav=20Marohni=C4=87?= Date: Sat, 25 May 2013 21:28:16 +0200 Subject: [PATCH] work around bug in git 1.8.2.1 in tests Making empty commits in tests blocked by opening the default text editor, waiting for a message which we specified to be empty. http://thread.gmane.org/gmane.comp.version-control.git/225529 --- features/support/env.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/support/env.rb b/features/support/env.rb index 2bab0803..3ee417f8 100644 --- a/features/support/env.rb +++ b/features/support/env.rb @@ -144,7 +144,7 @@ World Module.new { end def empty_commit - run_silent "git commit --quiet -m '' --allow-empty --allow-empty-message" + run_silent "git commit --quiet -m empty --allow-empty" end # Aruba unnecessarily creates new Announcer instance on each invocation -- GitLab