diff --git a/Meta/WPT.sh b/Meta/WPT.sh index 5c7a9906690..973f92bd9d2 100755 --- a/Meta/WPT.sh +++ b/Meta/WPT.sh @@ -12,7 +12,7 @@ ensure_ladybird_source_dir WPT_SOURCE_DIR=${WPT_SOURCE_DIR:-"${LADYBIRD_SOURCE_DIR}/Tests/LibWeb/WPT/wpt"} WPT_REPOSITORY_URL=${WPT_REPOSITORY_URL:-"https://github.com/web-platform-tests/wpt.git"} -BUILD_PRESET=${BUILD_PRESET:-default} +BUILD_PRESET=${BUILD_PRESET:-Release} BUILD_DIR=$(get_build_dir "$BUILD_PRESET") diff --git a/Meta/shell_include.sh b/Meta/shell_include.sh index c0162b1c6a5..ad8620ec646 100644 --- a/Meta/shell_include.sh +++ b/Meta/shell_include.sh @@ -66,7 +66,7 @@ get_build_dir() { # Note: Keep in sync with buildDir defaults in CMakePresets.json case "$1" in - "default") + "Release") BUILD_DIR="${LADYBIRD_SOURCE_DIR}/Build/release" ;; "Debug")