Skip to content

Commit 22d00e9

Browse files
committed
fix(ssh): cmd: remove unnecessary call to utils.SanitizeRepo
1 parent a8d1bf3 commit 22d00e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/ssh/cmd/cmd.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ func checkIfAdmin(cmd *cobra.Command, args []string) error {
172172
func checkIfCollab(cmd *cobra.Command, args []string) error {
173173
var repo string
174174
if len(args) > 0 {
175-
repo = utils.SanitizeRepo(args[0])
175+
repo = args[0]
176176
}
177177

178178
ctx := cmd.Context()

0 commit comments

Comments
 (0)