mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
cea34725f1
* make sure files contain a final newline * use consistent indentation * trim excess whitespace * trim trailing whitespace
10 lines
240 B
Bash
Executable File
10 lines
240 B
Bash
Executable File
#!/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()" $@
|