.github
bin
builder
pwnagotchi
scripts
backup.sh
changelog.sh
create_sibling.sh
language.sh
linux_connection_share.sh
macos_connection_share.sh
preview.py
pypi_upload.sh
release.sh
win_connection_share.ps1
.DEREK.yml
.gitignore
.travis.yml
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE.md
MANIFEST.in
Makefile
README.md
requirements.txt
setup.py
7 lines
127 B
Bash
Executable File
7 lines
127 B
Bash
Executable File
#!/bin/bash
|
|
|
|
rm -rf build dist pwnagotchi.egg-info &&
|
|
python3 setup.py sdist bdist_wheel &&
|
|
clear &&
|
|
twine upload dist/*
|