From 22d00e9db31e1f4d0c32beae1e8733883f4d80d8 Mon Sep 17 00:00:00 2001 From: Ayman Bagabas Date: Tue, 7 Jan 2025 14:32:03 +0300 Subject: [PATCH] fix(ssh): cmd: remove unnecessary call to utils.SanitizeRepo --- pkg/ssh/cmd/cmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/ssh/cmd/cmd.go b/pkg/ssh/cmd/cmd.go index 61645966..18624eb3 100644 --- a/pkg/ssh/cmd/cmd.go +++ b/pkg/ssh/cmd/cmd.go @@ -172,7 +172,7 @@ func checkIfAdmin(cmd *cobra.Command, args []string) error { func checkIfCollab(cmd *cobra.Command, args []string) error { var repo string if len(args) > 0 { - repo = utils.SanitizeRepo(args[0]) + repo = args[0] } ctx := cmd.Context()