onionshare/desktop/scripts/rebuild-cli.sh

9 lines
221 B
Bash
Raw Normal View History

2020-11-29 10:42:04 -08:00
#!/bin/bash
# Build the CLI python wheel and copy it to the desktop folder
SCRIPTS_DIR="$( cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd )"
cd $SCRIPTS_DIR
cd ../../cli
poetry build
cp dist/*.whl ../desktop