From 379b638b57c03e9d41cbb3d8d8e88cf3dee31172 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sun, 17 Apr 2022 14:39:03 +0300 Subject: [PATCH] ci: update windows-install-sqlite.bat to latest sqlite --- .github/workflows/windows-install-sqlite.bat | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/windows-install-sqlite.bat b/.github/workflows/windows-install-sqlite.bat index 4bd1b7a0d..31fa9ed73 100644 --- a/.github/workflows/windows-install-sqlite.bat +++ b/.github/workflows/windows-install-sqlite.bat @@ -1,12 +1,11 @@ @echo off -curl -L https://www.sqlite.org/2020/sqlite-amalgamation-3320300.zip -o sqlite-amalgamation-3320300.zip +curl -L https://www.sqlite.org/2022/sqlite-amalgamation-3380200.zip -o sqlite-amalgamation-3380200.zip -unzip sqlite-amalgamation-3320300.zip -d thirdparty\ +unzip sqlite-amalgamation-3380200.zip -d thirdparty\ -del thirdparty\sqlite-amalgamation-3320300\shell.c +del thirdparty\sqlite-amalgamation-3380200\shell.c -move /y thirdparty\sqlite-amalgamation-3320300 thirdparty\sqlite +move /y thirdparty\sqlite-amalgamation-3380200 thirdparty\sqlite dir thirdparty\sqlite - -- 2.30.2