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 @@ -80,6 +80,7 @@ class Distro {
8080 UbuntuMantic,
8181 UbuntuNoble,
8282 UbuntuOracular,
83+ UbuntuPlucky,
8384 UnknownDistro
8485 };
8586
@@ -131,7 +132,7 @@ class Distro {
131132 }
132133
133134 bool IsUbuntu () const {
134- return DistroVal >= UbuntuHardy && DistroVal <= UbuntuOracular ;
135+ return DistroVal >= UbuntuHardy && DistroVal <= UbuntuPlucky ;
135136 }
136137
137138 bool IsAlpineLinux () const { return DistroVal == AlpineLinux; }
Original file line number Diff line number Diff line change @@ -96,6 +96,7 @@ static Distro::DistroType DetectLsbRelease(llvm::vfs::FileSystem &VFS) {
9696 .Case (" mantic" , Distro::UbuntuMantic)
9797 .Case (" noble" , Distro::UbuntuNoble)
9898 .Case (" oracular" , Distro::UbuntuOracular)
99+ .Case (" plucky" , Distro::UbuntuPlucky)
99100 .Default (Distro::UnknownDistro);
100101 return Version;
101102}
You can’t perform that action at this time.
0 commit comments