File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -79,6 +79,7 @@ class Distro {
7979 UbuntuOracular,
8080 UbuntuPlucky,
8181 UbuntuQuesting,
82+ UbuntuResolute,
8283 UnknownDistro
8384 };
8485
@@ -130,7 +131,7 @@ class Distro {
130131 }
131132
132133 bool IsUbuntu () const {
133- return DistroVal >= UbuntuMaverick && DistroVal <= UbuntuQuesting ;
134+ return DistroVal >= UbuntuMaverick && DistroVal <= UbuntuResolute ;
134135 }
135136
136137 bool IsAlpineLinux () const { return DistroVal == AlpineLinux; }
Original file line number Diff line number Diff line change @@ -92,6 +92,7 @@ static Distro::DistroType DetectLsbRelease(llvm::vfs::FileSystem &VFS) {
9292 .Case (" oracular" , Distro::UbuntuOracular)
9393 .Case (" plucky" , Distro::UbuntuPlucky)
9494 .Case (" questing" , Distro::UbuntuQuesting)
95+ .Case (" resolute" , Distro::UbuntuResolute)
9596 .Default (Distro::UnknownDistro);
9697 return Version;
9798}
You can’t perform that action at this time.
0 commit comments