Skip to content

Commit 5929a5b

Browse files
sdsShane da Silva
authored and
Shane da Silva
committed
Report error when unsupported Overcommit installed
For users that are already running an older version of Overcommit, they'll get a weird error if they somehow install the new hooks on their machine and attempt to run them. This solves this problem by reporting a helpful error message if the version of overcommit that was loaded is less than a particular version. Change-Id: I6fa26c05e0224daffc0d0909bff0d11b91506094 Reviewed-on: http://gerrit.causes.com/35621 Reviewed-by: Shane da Silva <shane@causes.com> Tested-by: Shane da Silva <shane@causes.com>
1 parent 68de861 commit 5929a5b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

template-dir/hooks/overcommit-hook

+8
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,14 @@ rescue LoadError
4040
end
4141
end
4242

43+
if Gem::Version.new(Overcommit::VERSION) < Gem::Version.new('0.6.0')
44+
puts "Installed version of Overcommit (#{Overcommit::VERSION}) is " <<
45+
"incompatible with the installed hooks.\n" <<
46+
'Run `gem install overcommit && overcommit --install` to ensure ' <<
47+
"you're up-to-date."
48+
exit 64 # EX_USAGE
49+
end
50+
4351
begin
4452
hook_type_class = Overcommit::Utils.camel_case(hook_type)
4553

0 commit comments

Comments
 (0)