Skip to content

Commit e9fa304

Browse files
committed
Update SQLite to 3.32.0
1 parent 7b2f928 commit e9fa304

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
# I got this handy makefile syntax from : https://github.com/mandel59/sqlite-wasm (MIT License) Credited in LICENSE
88
# To use another version of Sqlite, visit https://www.sqlite.org/download.html and copy the appropriate values here:
9-
SQLITE_AMALGAMATION = sqlite-amalgamation-3310100
10-
SQLITE_AMALGAMATION_ZIP_URL = https://www.sqlite.org/2020/sqlite-amalgamation-3310100.zip
11-
SQLITE_AMALGAMATION_ZIP_SHA1 = a58e91a39b7b4ab720dbc843c201fb6a18eaf32b
9+
SQLITE_AMALGAMATION = sqlite-amalgamation-3320000
10+
SQLITE_AMALGAMATION_ZIP_URL = https://www.sqlite.org/2020/sqlite-amalgamation-3320000.zip
11+
SQLITE_AMALGAMATION_ZIP_SHA1 = b55939b50d277aa1146f91a76bf9de200942f5d3
1212

1313
# Note that extension-functions.c hasn't been updated since 2010-02-06, so likely doesn't need to be updated
1414
EXTENSION_FUNCTIONS = extension-functions.c
@@ -174,7 +174,7 @@ sqlite-src/$(SQLITE_AMALGAMATION): cache/$(SQLITE_AMALGAMATION).zip
174174
echo '$(SQLITE_AMALGAMATION_ZIP_SHA1) ./cache/$(SQLITE_AMALGAMATION).zip' > cache/check.txt
175175
sha1sum -c cache/check.txt
176176
rm -rf $@
177-
unzip 'cache/$(SQLITE_AMALGAMATION).zip' -d sqlite-src/
177+
unzip -u 'cache/$(SQLITE_AMALGAMATION).zip' -d sqlite-src/
178178
touch $@
179179

180180
sqlite-src/$(SQLITE_AMALGAMATION)/$(EXTENSION_FUNCTIONS): cache/$(EXTENSION_FUNCTIONS)

0 commit comments

Comments
 (0)