Fix sqlite3 download link on windows

This commit is contained in:
Simon Binder 2024-01-17 18:25:51 +01:00
parent 2a2990e362
commit 8adb3bd903
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ Future<void> main(List<String> args) async {
// Much easier to just download precompiled builds.
if (Platform.isWindows) {
const windowsUri =
'https://www.sqlite.org/$_year/sqlite-dll-win64-x64-$_version.zip';
'https://www.sqlite.org/$_year/sqlite-dll-win-x64-$_version.zip';
final sqlite3Zip = p.join(temporaryDirPath, 'sqlite3.zip');
final client = Client();
final response = await client.send(Request('GET', Uri.parse(windowsUri)));