mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
9 lines
239 B
Bash
9 lines
239 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Run OnionShare desktop, allowing you to use command-line arguments
|
||
|
|
||
|
SCRIPTS_DIR="$( cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd )"
|
||
|
cd $SCRIPTS_DIR
|
||
|
|
||
|
cd ../src
|
||
|
python -c "import onionshare; onionshare.main()" $@
|