Skip to content

Commit

Permalink
Revert work-around in build_docs.pl
Browse files Browse the repository at this point in the history
  • Loading branch information
lcawl committed Oct 18, 2024
1 parent ab5a3ea commit f16f289
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions build_docs.pl
Original file line number Diff line number Diff line change
Expand Up @@ -408,18 +408,7 @@ sub check_kibana_links {
#
# TODO: remove as part of
# https://github.com/elastic/docs/issues/2264
if ($version eq "master") {
$branch = "main";
}
else {
# Temporary work-around for 8.x branch masquerading as 8.16
if ($version eq "8.16") {
$branch = "8.x";
}
else {
$branch = $version;
}
}
$branch = $version eq "master" ? "main" : $version;
say " Branch: $branch, Version: $version";
my $links_file;
my $source = eval {
Expand Down

0 comments on commit f16f289

Please sign in to comment.