Writing a driver script for my git hooks in Perl. Unfortunately, I keep getting this syntax error that doesn't make sense.
Can't locate Git/Hooks.pm in @INC (@INC contains: /path/to/myLibraries.)
I understand it is looking for Git/Hooks.pm in my include directories. Unfortunately, I only see the Git directory, but no Hooks.pm file.
I tried finding Hooks.pm
on GitHub (i.e. source code of Git), but can't even find it there.
https://github.com/git/git/tree/master/perl/Git
The only thing I see in the library I am using is I18N.pm IndexInfo.pm SVN SVN.pm
, which is exactly what I see for git's source code.
Does this file even exist...anywhere? If so, where and when I find it can I just copy it into the directory and call it good?