Kyoo/install.sh
2020-01-15 01:25:17 +01:00

12 lines
284 B
Bash
Executable File

#!/bin/bash
if [[ $(/usr/bin/id -u) -ne 0 ]]; then
echo "The script must be run as root since it create an user for kyoo and install the app inside the /opt folder."
exit
fi
git clone https://github.com/AnonymusRaccoon/Kyoo --recurse
cd Kyoo
git pull --recurse
make install