disable auto version increment on RELEASE builds

This commit is contained in:
radius 2016-03-05 13:15:09 -05:00
parent 4116c4de72
commit 505cd9abd6
1 changed files with 2 additions and 0 deletions

View File

@ -1526,6 +1526,8 @@ EOF
$NDK -j${JOBS} &>> $TMPDIR/log/${BOT}/${LOGDATE}/${LOGDATE}_RetroArch_${PLATFORM}.log $NDK -j${JOBS} &>> $TMPDIR/log/${BOT}/${LOGDATE}/${LOGDATE}_RetroArch_${PLATFORM}.log
if [ "${RELEASE}" == "NO" ]; then if [ "${RELEASE}" == "NO" ]; then
python ./version_increment.py python ./version_increment.py
else
git reset --hard
fi fi
ant clean &>> $TMPDIR/log/${BOT}/${LOGDATE}/${LOGDATE}_RetroArch_${PLATFORM}.log ant clean &>> $TMPDIR/log/${BOT}/${LOGDATE}/${LOGDATE}_RetroArch_${PLATFORM}.log
android update project --path . --target android-22 &>> $TMPDIR/log/${BOT}/${LOGDATE}/${LOGDATE}_RetroArch_${PLATFORM}.log android update project --path . --target android-22 &>> $TMPDIR/log/${BOT}/${LOGDATE}/${LOGDATE}_RetroArch_${PLATFORM}.log