diff options
author | Matt Watson <mattdangerw@gmail.com> | 2013-04-24 14:56:53 -0700 |
---|---|---|
committer | Matt Watson <mattdangerw@gmail.com> | 2013-04-25 02:19:07 -0700 |
commit | 0aec2d73847c74ce783293682b6bc60665ed5d93 (patch) | |
tree | e68fcbd6b674d2766c79408ccfd37a046a202a76 /autogen.sh | |
parent | 1521b0b3283c6ffa2e83aa993eaf7dfcfb28be55 (diff) |
Added commit-msg script for issues tracking which autogen installs.
[endlessm/eos-sdk#35]
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -14,6 +14,12 @@ test -f $FILE_MUST_EXIST || { exit 1 } +# Install our commit message script if a git repo +if [ -d .git ]; then + cp commit-msg .git/hooks/commit-msg + chmod +x .git/hooks/commit-msg +fi + # GNU gettext automake support doesn't get along with git # https://bugzilla.gnome.org/show_bug.cgi?id=661128 touch -t 200001010000 $POT_FILE |