summaryrefslogtreecommitdiffstats
path: root/extra/git-post-commit.sh
diff options
context:
space:
mode:
Diffstat (limited to 'extra/git-post-commit.sh')
-rwxr-xr-xextra/git-post-commit.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/extra/git-post-commit.sh b/extra/git-post-commit.sh
deleted file mode 100755
index e74c294..0000000
--- a/extra/git-post-commit.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh -e
-
-# Post-commit hook for triggering bash-completion Docker Hub test image
-# builds at https://hub.docker.com/r/vskytta/bash-completion/
-#
-# To enable: ln -s ../../extra/git-post-commit.sh .git/hooks/post-commit
-#
-# The bash-completion.docker-hub-trigger-url config option must be set to
-# the full Docker Hub build trigger URL to hit.
-
-url=$(git config bash-completion.docker-hub-trigger-url)
-
-test "$(git symbolic-ref --short HEAD 2>/dev/null)" = master
-
-git diff-tree -r --name-only --no-commit-id HEAD |
- grep -qxE 'test/test-cmd-list\.txt'
-
-curl \
- --silent --show-error \
- --max-time 30 \
- --header Content-Type:application/json \
- --data '{"build":true}' \
- $url >/dev/null