1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/.github/workflows/windows-install-sqlite.bat

13 lines
311 B
Batchfile
Raw Normal View History

@echo off
curl -L https://www.sqlite.org/2020/sqlite-amalgamation-3320300.zip -o sqlite-amalgamation-3320300.zip
2020-06-27 21:44:14 +03:00
unzip sqlite-amalgamation-3320300.zip -d thirdparty\
2020-06-27 21:44:14 +03:00
del thirdparty\sqlite-amalgamation-3320300\shell.c
2020-06-27 21:44:14 +03:00
move /y thirdparty\sqlite-amalgamation-3320300 thirdparty\sqlite
dir thirdparty\sqlite