From 6f562c5661c586e026c1ef5bee3bbde46cc8a14b Mon Sep 17 00:00:00 2001 From: Claude Bot Date: Fri, 9 Jan 2026 19:11:42 +0000 Subject: [PATCH] fix: correct WebKit version format for preview release MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- cmake/tools/SetupWebKit.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/tools/SetupWebKit.cmake b/cmake/tools/SetupWebKit.cmake index 179768c168..17fe71e7aa 100644 --- a/cmake/tools/SetupWebKit.cmake +++ b/cmake/tools/SetupWebKit.cmake @@ -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)