mirror of
https://github.com/onionshare/onionshare.git
synced 2025-07-12 17:39:26 -04:00
9 lines
No EOL
221 B
Bash
Executable file
9 lines
No EOL
221 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 build
|
|
cp dist/*.whl ../desktop |