Skip to content

Commit

Permalink
fix(ssh): cmd: remove unnecessary call to utils.SanitizeRepo
Browse files Browse the repository at this point in the history
  • Loading branch information
aymanbagabas committed Jan 7, 2025
1 parent a8d1bf3 commit 22d00e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ssh/cmd/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 22d00e9

Please sign in to comment.