feat(debian): support Debian 11(bullseye) (#1298)

* feat(debian): support bullseye

* fix(debian): fix test case
This commit is contained in:
MaineK00n
2021-09-08 10:47:34 +09:00
committed by GitHub
parent 3e67f04fe4
commit 9ed5f2cac5
4 changed files with 18 additions and 1 deletions

View File

@@ -31,6 +31,7 @@ func (deb Debian) supported(major string) bool {
"8": "jessie",
"9": "stretch",
"10": "buster",
"11": "bullseye",
}[major]
return ok
}