Skip to content
This repository was archived by the owner on Dec 4, 2023. It is now read-only.

Commit 2a89e68

Browse files
committed
Fix the check for git-svn
This seemed to cause an issue whenever there are no man pages installed for git-svn.
1 parent 78ee254 commit 2a89e68

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ext/libv8/checkout.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def check_git_svn!
4444
# msysgit provides git svn
4545
return if RUBY_PLATFORM =~ /mingw/
4646

47-
unless system 'git help svn 2>&1 > /dev/null'
47+
unless system 'git svn --version 2>&1 > /dev/null'
4848
fail "git-svn not installed!\nPlease install git-svn."
4949
end
5050
end

0 commit comments

Comments
 (0)