Skip to content

Commit 69a7627

Browse files
authored
Merge pull request #4193 from ralfhandl/gh-pages-ignore-minor-spec-version-symlinks
gh-pages: ignore spec minor-version symlinks
2 parents 78a9441 + c27f4be commit 69a7627

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

_includes/specification-version-list.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
{%- for file in html_files -%}
44
{%- assign segments = file.path | split: "/" -%}
55
{%- assign firstchar = file.basename | slice: 0 -%}
6-
{%- if segments[1] == include.specification and firstchar == "v" -%}
6+
{%- assign patch_separator = file.basename | slice: 4 -%}
7+
{%- if segments[1] == include.specification and firstchar == "v" and patch_separator == "." -%}
78
{%- assign minor_version = file.basename | slice: 1, 3 -%}
89
{%- if minor_version != last_version -%}
910
{% assign last_version = minor_version %}

0 commit comments

Comments
 (0)