From e6a4f942b178a47dd8cf4ed5e8af551d20e2c061 Mon Sep 17 00:00:00 2001 From: Relintai Date: Thu, 22 Jul 2021 21:55:46 +0200 Subject: [PATCH] Simple retropie install script. --- 06_1_retropie_install.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 06_1_retropie_install.sh diff --git a/06_1_retropie_install.sh b/06_1_retropie_install.sh new file mode 100755 index 0000000..f6387d7 --- /dev/null +++ b/06_1_retropie_install.sh @@ -0,0 +1,18 @@ +#!/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 + +