Skip to content

Commit

Permalink
Update doc builds for 8.x (#3093)
Browse files Browse the repository at this point in the history
  • Loading branch information
lcawl authored Oct 22, 2024
1 parent dcace5f commit 88d54f3
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 91 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
Loading

0 comments on commit 88d54f3

Please sign in to comment.