blob: fd8b3e0cd6c94e82c4a901583be126f9a4b510d2 (
plain) (
tree)
|
|
#!/bin/bash
#
# (c) 2014 - Bertrand Jacquin <beber@meleeweb.net>
#
# Called by git-commit with no arguments. The hook should
# exit with non-zero status after issuing an appropriate message if
# it wants to stop the commit.
#
# To enable this hook, run:
# cd $(git rev-parse --show-toplevel)
# chmod +x scripts/hook-metadata
# ln -s scripts/hook-metadata .git/hooks/pre-commit
ROOT="$(git rev-parse --show-toplevel)"
REPO="$(< ${ROOT}/profiles/repo_name)"
egencache --repo="${REPO}" \
--update \
--update-use-local-desc
git add -vA "${ROOT}/profiles/use.local.desc"
git add -vA "${ROOT}/metadata/md5-cache"
|