diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2020-04-06 10:37:00 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2020-04-06 10:37:00 -0700 |
commit | 54aabb56bd3c66212435833324330f688461c6e2 (patch) | |
tree | dd0e44a8d01dba4a4dad6657b49b8bdbecb11705 | |
parent | local/require-signed-push: handle more GIT_PUSH_CERT_STATUS error cases (diff) | |
download | githooks-54aabb56bd3c66212435833324330f688461c6e2.tar.gz githooks-54aabb56bd3c66212435833324330f688461c6e2.tar.bz2 githooks-54aabb56bd3c66212435833324330f688461c6e2.zip |
local/require-signed-push: fix typo
Credit: Jorge Manuel B. S. Vicetto jmbsvicetto@gmail.com
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
-rwxr-xr-x | local/require-signed-push | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/local/require-signed-push b/local/require-signed-push index 1c10609..68b03a8 100755 --- a/local/require-signed-push +++ b/local/require-signed-push @@ -171,7 +171,7 @@ case $GIT_PUSH_CERT_STATUS in # No signature N) if [ -z "$GIT_PUSH_CERT" ]; then - fail_signed_push "FAIL: no push certifiate found" + fail_signed_push "FAIL: no push certificate found" else fail_signed_push "FAIL: push certificate with no signature" # wtf? fi |