From f991f809ca9a12ad2c116f64ace38530e05b305a Mon Sep 17 00:00:00 2001 From: orbea Date: Wed, 4 Jul 2018 08:40:37 -0700 Subject: [PATCH] libretro-buildbot-recipe.sh: Remove old .libretro-core-recipe files. This is probably not needed, but it is probably safer to make sure the old files are removed instead of watching the core rebuild endlessly when its not. --- libretro-buildbot-recipe.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/libretro-buildbot-recipe.sh b/libretro-buildbot-recipe.sh index 46892299..cf5f56ab 100755 --- a/libretro-buildbot-recipe.sh +++ b/libretro-buildbot-recipe.sh @@ -605,6 +605,7 @@ while read line; do if [ -f "$DIR/.libretro-core-recipe" ]; then recipe="$(cat "$DIR/.libretro-core-recipe")" if [ "$line" != "$recipe" ]; then + rm -f -- "$DIR/.libretro-core-recipe" echo "$line" > "$DIR/.libretro-core-recipe" BUILD="YES" fi