blob: 44c19b3baaedfbee1181ff0778b6820291d3fb86 (
plain)
1
2
3
4
5
6
7
8
9
10
|
@echo off
setlocal
set version=v0.1.12
curl -L -o svls-%version%-x86_64-win.zip "https://github.com/dalance/svls/releases/download/v0.1.12/svls-%version%-x86_64-win.zip"
call "%~dp0\run_unzip.cmd" svls-%version%-x86_64-win.zip
move target\x86_64-pc-windows-msvc\release\svls.exe .
rd /Q /S target
del svls-%version%-x86_64-win.zip
|