fix: correct WebKit version format for preview release

The download URL already prepends "autobuild-", so the version should
be "preview-pr-129-4c8aa53f" not "autobuild-preview-pr-129-4c8aa53f".

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Claude Bot
2026-01-09 19:11:42 +00:00
parent d837acb37d
commit 6f562c5661

View File

@@ -2,7 +2,7 @@ option(WEBKIT_VERSION "The version of WebKit to use")
option(WEBKIT_LOCAL "If a local version of WebKit should be used instead of downloading")
if(NOT WEBKIT_VERSION)
set(WEBKIT_VERSION autobuild-preview-pr-129-4c8aa53f)
set(WEBKIT_VERSION preview-pr-129-4c8aa53f)
endif()
string(SUBSTRING ${WEBKIT_VERSION} 0 16 WEBKIT_VERSION_PREFIX)