cmd/ursrv: Add FreeBSD detection (#9351)

### Purpose

Classify `ports@freebsd` as `FreeBSD (3rd party)`
This commit is contained in:
bt90 2024-01-16 17:14:12 +01:00 committed by GitHub
parent d5e1b99e6c
commit 35e153625c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -76,6 +76,7 @@ var (
{regexp.MustCompile(`@fedora`), "Fedora (3rd party)"},
{regexp.MustCompile(`\sbrew@`), "Homebrew (3rd party)"},
{regexp.MustCompile(`\sroot@buildkitsandbox`), "LinuxServer.io (3rd party)"},
{regexp.MustCompile(`\sports@freebsd`), "FreeBSD (3rd party)"},
{regexp.MustCompile(`.`), "Others"},
}
)