diff --git a/git-hooks/post-receive b/git-hooks/post-receive index 109e9fa..23f1875 100755 --- a/git-hooks/post-receive +++ b/git-hooks/post-receive @@ -1,3 +1,3 @@ #!/usr/bin/env bash set -eo pipefail; [[ $PLUSHU_TRACE ]] && set -x -"$PLUSHU_ROOT/lib/plushook" -i git-post-receive "$@" +"$PLUSHU_ROOT/lib/plushook" -i git-post-receive-hook "$@" diff --git a/git-hooks/post-update b/git-hooks/post-update index bfee3a8..13fdc4e 100755 --- a/git-hooks/post-update +++ b/git-hooks/post-update @@ -1,3 +1,3 @@ #!/usr/bin/env bash set -eo pipefail; [[ $PLUSHU_TRACE ]] && set -x -"$PLUSHU_ROOT/lib/plushook" git-post-update "$@" +"$PLUSHU_ROOT/lib/plushook" git-post-update-hook "$@" diff --git a/git-hooks/pre-receive b/git-hooks/pre-receive index 658fab3..3e1d335 100755 --- a/git-hooks/pre-receive +++ b/git-hooks/pre-receive @@ -1,3 +1,3 @@ #!/usr/bin/env bash set -eo pipefail; [[ $PLUSHU_TRACE ]] && set -x -"$PLUSHU_ROOT/lib/plushook" -i git-pre-receive "$@" +"$PLUSHU_ROOT/lib/plushook" -i git-pre-receive-hook "$@" diff --git a/git-hooks/update b/git-hooks/update index ebc2d09..5d3df1e 100755 --- a/git-hooks/update +++ b/git-hooks/update @@ -1,3 +1,3 @@ #!/usr/bin/env bash set -eo pipefail; [[ $PLUSHU_TRACE ]] && set -x -"$PLUSHU_ROOT/lib/plushook" git-update "$@" +"$PLUSHU_ROOT/lib/plushook" git-update-hook "$@"