7 lines
157 B
Bash
Executable File
7 lines
157 B
Bash
Executable File
#!/bin/bash
|
|
mkdir temp
|
|
export PYTHONPATH=./temp
|
|
python setup.py develop --install-dir ./temp
|
|
cp ./temp/Stats.egg-link ~/.config/deluge/plugins
|
|
rm -fr ./temp
|