mirror of
https://github.com/Relintai/pi_player.git
synced 2024-11-12 08:45:35 +01:00
19 lines
225 B
Bash
Executable File
19 lines
225 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ! -d "repos" ]; then
|
|
mkdir repos
|
|
fi
|
|
|
|
cd repos
|
|
|
|
if [ ! -d "RetroPie-Setup" ]; then
|
|
git clone https://github.com/RetroPie/RetroPie-Setup.git RetroPie-Setup
|
|
|
|
fi
|
|
|
|
cd RetroPie-Setup
|
|
|
|
sudo ./retropie_setup.sh
|
|
|
|
|