#!/bin/sh check_command() { command -v "$1" > /dev/null 2>&1 || { echo "git-stats hook script requires the \`${1}\` binary in order to run." >&2; exit 1; } } check_command "perl" check_command "printf" check_command "git" echo "Setting up git-stats hooks."; git_templates_dir=$(git config --global --get init.templatedir); if [ $? -ne 0 ]; then # Create a new global templatedir if there are none git_templates_dir="${HOME}/.git-templates" git config --global init.templatedir "$git_templates_dir" && echo "Set new global git template dir at ${git_templates_dir}" fi git_hooks_dir="${git_templates_dir}/hooks" post_commit_path="${git_hooks_dir}/post-commit" mkdir -p "$git_hooks_dir" hook=$(cat < "$post_commit_path" \ && chmod +x "$post_commit_path" \ && echo "Successfully set up git-stats hook at ${post_commit_path}." \ && exit 0 else printf "\n%s\n" "$hook" >> "$post_commit_path" \ && echo "Successfully set up git-stats hook at ${post_commit_path}." \ && exit 0 fi echo "Couldn't set up git-stats hook." exit 1