mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
12 lines
284 B
Bash
Executable File
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
|