From 275e5dbae6e1f5bfc8e2d43b9341136eb27c7ee3 Mon Sep 17 00:00:00 2001
From: Jeremy Soller <jeremy@system76.com>
Date: Thu, 21 May 2020 20:37:18 -0600
Subject: [PATCH] Repo will now re-prepare when sysroot is deleted

---
 repo.sh | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/repo.sh b/repo.sh
index b661f0cda..35052bb21 100755
--- a/repo.sh
+++ b/repo.sh
@@ -40,6 +40,10 @@ do
     then
         echo -e "\033[01;38;5;155mrepo - preparing $recipe\033[0m" >&2
         ./cook.sh "$recipe" prepare
+    elif [ ! -d "recipes/$recipe/sysroot/" ]
+    then
+        echo -e "\033[01;38;5;155mrepo - repreparing $recipe\033[0m" >&2
+        ./cook.sh "$recipe" unprepare prepare
     else
         TIME_SOURCE="$($FIND recipes/$recipe/source/ -type f -not -path '*/.git*' -printf "%Ts\n" | sort -nr | head -n 1)"
         TIME_BUILD="$($FIND recipes/$recipe/build/ -type f -not -path '*/.git*' -printf "%Ts\n" | sort -nr | head -n 1)"
-- 
GitLab