mirror of
https://github.com/onionshare/onionshare.git
synced 2025-02-14 05:31:25 -05:00
10 lines
236 B
Bash
Executable File
10 lines
236 B
Bash
Executable File
#!/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 install
|
|
poetry build
|
|
cp dist/*.whl ../desktop |