guacamole_keysyms/scripts/publish.sh
Ari Archer 139d47d17f
Make publish.sh install keyring by default
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2022-07-23 18:52:12 +03:00

12 lines
182 B
Bash
Executable file

#!/usr/bin/env sh
set -xe
main() {
python3 -m pip install setuptools wheel twine keyring
python3 setup.py sdist bdist_wheel
python3 -m twine upload dist/*
}
main "$@"