mirror of
https://github.com/scito/extract_otp_secret_keys.git
synced 2025-12-05 22:34:57 +01:00
- create release on tag push
- build executables by PyInstaller:
- extract_otp_secrets_linux_x86_64 (glibc 2.28)
- extract_otp_secrets_win_x86_64.exe
- extract_otp_secrets_macos_x86_64 (untested)
- add --version
- build linux executable in docker container
- update README
- add TOC
- improve badges
- add PyInstaller section
- docker
- build BASE_IMAGE as ARG
- copy only required files to image
- add .alias
- build.sh
- fix clean
- fix generate results
- generate TOC
5 lines
118 B
Bash
Executable file
5 lines
118 B
Bash
Executable file
#!/bin/sh
|
|
cd /extract
|
|
mkdir -p tests
|
|
ln -sf /extract/data tests/data
|
|
pip install -U pytest pytest-mock && pytest "$@"
|