mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-22 16:32:01 +03:00
14 lines
313 B
Batchfile
14 lines
313 B
Batchfile
@echo off
|
|
|
|
REM Make sure the submodule is cloned and up to date.
|
|
git submodule update --init
|
|
|
|
echo Building ykman-rpc for Windows...
|
|
cd ykman-rpc
|
|
poetry install
|
|
rmdir /s /q ..\build\windows\ykman-rpc
|
|
poetry run pyinstaller ykman-rpc.spec --distpath ..\build\windows
|
|
cd ..
|
|
|
|
echo All done, output in build/windows/
|