diff options
author | Runxi Yu <me@runxiyu.org> | 2025-02-19 09:03:03 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-02-19 09:03:03 +0800 |
commit | 8fde29bcf3ee352d63c09a2097b588eab738fdbd (patch) | |
tree | 88d4d925ed903134c7023350f7d1f2cfe998c998 /ssh_handle_receive_pack.go | |
parent | repo/contrib: Fix destination_commit param (diff) | |
download | forge-8fde29bcf3ee352d63c09a2097b588eab738fdbd.tar.gz forge-8fde29bcf3ee352d63c09a2097b588eab738fdbd.tar.zst forge-8fde29bcf3ee352d63c09a2097b588eab738fdbd.zip |
*.go: Use lowercase error values
Diffstat (limited to 'ssh_handle_receive_pack.go')
-rw-r--r-- | ssh_handle_receive_pack.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ssh_handle_receive_pack.go b/ssh_handle_receive_pack.go index 72ac3de..2eb647d 100644 --- a/ssh_handle_receive_pack.go +++ b/ssh_handle_receive_pack.go @@ -10,7 +10,7 @@ import ( "go.lindenii.runxiyu.org/lindenii-common/cmap" ) -var err_unauthorized_push = errors.New("You are not authorized to push to this repository") +var err_unauthorized_push = errors.New("you are not authorized to push to this repository") type pack_to_hook_t struct { session *glider_ssh.Session |