The branch, master has been updated via 5043584361445bd86ec5c43f8d6925b222fbe9bd (commit) from e6796538aab188515753c63e544157177651e823 (commit)
- Log ----------------------------------------------------------------- commit 5043584361445bd86ec5c43f8d6925b222fbe9bd Author: Michal Čihař michal@cihar.com Date: Thu Feb 25 17:16:39 2010 +0100
Avoid using repo-config.
-----------------------------------------------------------------------
Summary of changes: git-hooks/git-ciabot | 2 +- git-hooks/post-receive | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/git-hooks/git-ciabot b/git-hooks/git-ciabot index 1fb1b37..8367301 100755 --- a/git-hooks/git-ciabot +++ b/git-hooks/git-ciabot @@ -22,7 +22,7 @@ #
# The project as known to CIA -project="$(git repo-config hooks.cia-project)" +project="$(git config hooks.cia-project)"
# Set to true if you want the full log to be sent noisy=false diff --git a/git-hooks/post-receive b/git-hooks/post-receive index e83343f..f71b8fd 100755 --- a/git-hooks/post-receive +++ b/git-hooks/post-receive @@ -671,7 +671,7 @@ announcerecipients=$(git config hooks.announcelist) envelopesender=$(git config hooks.envelopesender) emailprefix=$(git config hooks.emailprefix || echo '[SCM] ') custom_showrev=$(git config hooks.showrev) -cia_project=$(git repo-config hooks.cia-project) +cia_project=$(git config hooks.cia-project)
# --- Main loop # Allow dual mode: run from the command line just like the update hook, or
hooks/post-receive