diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-18 20:45:22 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-18 20:45:22 +0800 |
commit | 18706a6e8377d0e0061b3d29562287d718b70f36 (patch) | |
tree | 01a7ff7ff044a6d6e83ad4124479937cd7cba948 /ssh_utils.go | |
parent | gofumpt (diff) | |
download | forge-18706a6e8377d0e0061b3d29562287d718b70f36.tar.gz forge-18706a6e8377d0e0061b3d29562287d718b70f36.tar.zst forge-18706a6e8377d0e0061b3d29562287d718b70f36.zip |
Remove underscores from Go code, pt 2
Diffstat (limited to 'ssh_utils.go')
-rw-r--r-- | ssh_utils.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ssh_utils.go b/ssh_utils.go index ac0781e..d9c11da 100644 --- a/ssh_utils.go +++ b/ssh_utils.go @@ -59,7 +59,7 @@ func get_repo_path_perms_from_ssh_path_pubkey(ctx context.Context, ssh_path, ssh repo_name = module_name switch module_type { case "repos": - _1, _2, _3, _4, _5, _6, _7 := get_path_perm_by_group_repo_key(ctx, group_path, module_name, ssh_pubkey) + _1, _2, _3, _4, _5, _6, _7 := getRepoInfo(ctx, group_path, module_name, ssh_pubkey) return group_path, repo_name, _1, _2, _3, _4, _5, _6, _7 default: return []string{}, "", 0, "", false, "", "", 0, err_ssh_illegal_endpoint |