Commit 49b873c16af61c8d0e49367d983b5a3dc24d3636

Authored by Tim Gover
1 parent 9eb09fd7

git: Create tags that match the APT releases

The Raspberry Pi OS APT release is generally considered to be the
next stable release of this repo so create tags that match those
releases.
Showing 1 changed file with 5 additions and 0 deletions
tools/rpi-create-tags 0 → 100755
  1 +#!/bin/sh
  2 +
  3 +# Create git tags that match the APT releases
  4 +
  5 +git blame debian/changelog | egrep "rpiboot .*urgency=" | sed 's/[()]//g' | sed 's/~/-/g' | awk '{print "git tag " $9 " " $1}'
... ...