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 {
79
79
UbuntuLunar,
80
80
UbuntuMantic,
81
81
UbuntuNoble,
82
+ UbuntuOracular,
82
83
UnknownDistro
83
84
};
84
85
@@ -130,7 +131,7 @@ class Distro {
130
131
}
131
132
132
133
bool IsUbuntu () const {
133
- return DistroVal >= UbuntuHardy && DistroVal <= UbuntuNoble ;
134
+ return DistroVal >= UbuntuHardy && DistroVal <= UbuntuOracular ;
134
135
}
135
136
136
137
bool IsAlpineLinux () const { return DistroVal == AlpineLinux; }
Original file line number Diff line number Diff line change @@ -95,6 +95,7 @@ static Distro::DistroType DetectLsbRelease(llvm::vfs::FileSystem &VFS) {
95
95
.Case (" lunar" , Distro::UbuntuLunar)
96
96
.Case (" mantic" , Distro::UbuntuMantic)
97
97
.Case (" noble" , Distro::UbuntuNoble)
98
+ .Case (" oracular" , Distro::UbuntuOracular)
98
99
.Default (Distro::UnknownDistro);
99
100
return Version;
100
101
}
You can’t perform that action at this time.
0 commit comments