Skip to content

Commit

Permalink
NO_ISSUE: Fix version pattern to one used in Apache KIE (#703)
Browse files Browse the repository at this point in the history
NO_ISSUE: fix version pattern
  • Loading branch information
domhanak authored Jan 21, 2025
1 parent 4c076bf commit 2a11800
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/copy-latest.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import shutil
from pathlib import Path

pattern = re.compile("(data-version=\")((\d+\.)(\d+\.)(\*|\d+)\.Final)")
pattern = re.compile("(data-version=\")((\d+\.)(\d+\.)(\*|\d+))")
found = False
base_path = "build/site/serverlessworkflow"
index_file = Path(base_path + "/latest/index.html").resolve()
Expand Down

0 comments on commit 2a11800

Please sign in to comment.