* manjaro

* Update go.mod
This commit is contained in:
Byron
2019-10-06 11:14:05 +03:00
committed by Lea Anthony
parent 93942111bc
commit f961659ada
5 changed files with 20 additions and 7 deletions

View File

@@ -43,6 +43,8 @@ const (
Kali
// Neon distribution
Neon
// Manjaro distribution
Manjaro
)
// DistroInfo contains all the information relating to a linux distribution
@@ -126,6 +128,8 @@ func parseOsRelease(osRelease string) *DistroInfo {
result.Distribution = Kali
case "neon":
result.Distribution = Neon
case "manjaro":
result.Distribution = Manjaro
default:
result.Distribution = Unknown
}