Skip to content

Commit

Permalink
Fix sqlite3 download link on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
simolus3 committed Jan 17, 2024
1 parent 2a2990e commit 8adb3bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drift/tool/download_sqlite3.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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)));
Expand Down

0 comments on commit 8adb3bd

Please sign in to comment.