mirror of https://github.com/AMT-Cheif/drift.git
Fix sqlite3 download link on windows
This commit is contained in:
parent
2a2990e362
commit
8adb3bd903
|
@ -39,7 +39,7 @@ Future<void> main(List<String> args) async {
|
||||||
// Much easier to just download precompiled builds.
|
// Much easier to just download precompiled builds.
|
||||||
if (Platform.isWindows) {
|
if (Platform.isWindows) {
|
||||||
const windowsUri =
|
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 sqlite3Zip = p.join(temporaryDirPath, 'sqlite3.zip');
|
||||||
final client = Client();
|
final client = Client();
|
||||||
final response = await client.send(Request('GET', Uri.parse(windowsUri)));
|
final response = await client.send(Request('GET', Uri.parse(windowsUri)));
|
||||||
|
|
Loading…
Reference in New Issue