diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/buildhistory.bbclass | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass index 6fb1ba646d..e3f92018f2 100644 --- a/meta/classes/buildhistory.bbclass +++ b/meta/classes/buildhistory.bbclass | |||
@@ -518,6 +518,10 @@ END | |||
518 | # Initialise the repo if necessary | 518 | # Initialise the repo if necessary |
519 | if [ ! -d .git ] ; then | 519 | if [ ! -d .git ] ; then |
520 | git init -q | 520 | git init -q |
521 | else | ||
522 | git tag -f build-minus-3 build-minus-2 > /dev/null 2>&1 || true | ||
523 | git tag -f build-minus-2 build-minus-1 > /dev/null 2>&1 || true | ||
524 | git tag -f build-minus-1 > /dev/null 2>&1 || true | ||
521 | fi | 525 | fi |
522 | # Check if there are new/changed files to commit (other than metadata-revs) | 526 | # Check if there are new/changed files to commit (other than metadata-revs) |
523 | repostatus=`git status --porcelain | grep -v " metadata-revs$"` | 527 | repostatus=`git status --porcelain | grep -v " metadata-revs$"` |