From ebe10601e28d00fe3b10225573e2a68812744180 Mon Sep 17 00:00:00 2001 From: zontreck Date: Fri, 30 Aug 2024 20:59:46 -0700 Subject: [PATCH] Ensure clean repo before compile --- compile.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/compile.sh b/compile.sh index 6a854ad..d8f93fb 100755 --- a/compile.sh +++ b/compile.sh @@ -1,6 +1,10 @@ #!/bin/bash +# Incase the environment was not cleaned up! +git clean -xfd +git reset --hard + cd dart mkdir out