Added scripts for installation, build and publishing
This commit is contained in:
18
run_install
Normal file
18
run_install
Normal file
@@ -0,0 +1,18 @@
|
||||
#!/bin/bash
|
||||
|
||||
#go to the directory of the script
|
||||
reldir=`dirname $0`
|
||||
cd $reldir
|
||||
directory=`pwd`
|
||||
|
||||
if [ "$(id -u)" != "0" ]; then
|
||||
echo "This script must be run as root" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
pip3 install listdownloader*
|
||||
if [ $? -ne 0 ]; then
|
||||
echo 'Package installation failed. Did you build the package? Do you have pip3 installed?'
|
||||
exit
|
||||
fi
|
||||
|
Reference in New Issue
Block a user