From 6485b3653b258212ea3f751c6b2a0bc898d04250 Mon Sep 17 00:00:00 2001 From: Sergey Tatarintsev Date: Tue, 6 Feb 2024 18:05:26 +0100 Subject: [PATCH] Fix WASM engine check post-split --- .github/scripts/check-engines-client.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/scripts/check-engines-client.sh b/.github/scripts/check-engines-client.sh index 9abc71e5ddeb..ea6c131c86f3 100644 --- a/.github/scripts/check-engines-client.sh +++ b/.github/scripts/check-engines-client.sh @@ -125,13 +125,13 @@ elif [ $CLIENT_ENGINE_TYPE == "wasm" ]; then echo "WasmEngine: Enabled" case $os_name in linux) - qe_location="$GENERATED_CLIENT/query-engine.wasm" + qe_location="$GENERATED_CLIENT/query_engine_bg.wasm" ;; osx) - qe_location="$GENERATED_CLIENT/query-engine.wasm" + qe_location="$GENERATED_CLIENT/query_engine_bg.wasm" ;; windows*) - qe_location="$GENERATED_CLIENT\query-engine.wasm" + qe_location="$GENERATED_CLIENT\query_engine_bg.wasm" ;; *) os_name=notset