From 045c1710e41566ca4eb42ad616d8e9328a12b440 Mon Sep 17 00:00:00 2001 From: raftedproc <71657594+raftedproc@users.noreply.github.com> Date: Wed, 23 Aug 2023 13:46:10 +0300 Subject: [PATCH] fix: update sqlite WASM module version to 0.18.1 (#26) --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 25fe008..f3f3195 100755 --- a/build.sh +++ b/build.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -SQLITE_WASM_VERSION="v0.18.0_w" +SQLITE_WASM_VERSION="v0.18.1" set -o errexit -o nounset -o pipefail @@ -17,5 +17,5 @@ cp target/wasm32-wasi/release/test.wasm artifacts/ # download SQLite 3 to use in tests if [[ ! -f artifacts/sqlite3.wasm ]]; then - curl -L https://github.com/fluencelabs/sqlite/releases/download/${SQLITE_WASM_VERSION}/sqlite3.wasm -o artifacts/sqlite3.wasm + curl -L https://github.com/fluencelabs/sqlite/releases/download/sqlite-wasm-${SQLITE_WASM_VERSION}/sqlite3.wasm -o artifacts/sqlite3.wasm fi