From 1cd0473986e70ea2c790801da95f4ad525a6b96e Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 6 May 2019 04:39:05 +0200 Subject: [PATCH] Always run git reset --hard before version increment --- libretro-buildbot-recipe.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libretro-buildbot-recipe.sh b/libretro-buildbot-recipe.sh index 2c3157b4..c0c5a6bc 100755 --- a/libretro-buildbot-recipe.sh +++ b/libretro-buildbot-recipe.sh @@ -1002,10 +1002,9 @@ key.alias.password=buildbot EOF + git reset --hard if [ "${RELEASE}" == "NO" ]; then python ./version_increment.py - else - git reset --hard fi ant clean | tee -a "$LOGFILE" android update project --path . --target android-26 | tee -a "$LOGFILE"