1
0
mirror of https://github.com/fluencelabs/sqlite-wasm-connector synced 2025-03-16 06:50:49 +00:00

fix: update sqlite WASM module version to 0.18.1 ()

This commit is contained in:
raftedproc 2023-08-23 13:46:10 +03:00 committed by GitHub
parent 743010e16c
commit 045c1710e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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