diff options
Diffstat (limited to 'installer/install-svls.cmd')
-rw-r--r-- | installer/install-svls.cmd | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/installer/install-svls.cmd b/installer/install-svls.cmd new file mode 100644 index 0000000..44c19b3 --- /dev/null +++ b/installer/install-svls.cmd @@ -0,0 +1,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
|