aboutsummaryrefslogtreecommitdiff
path: root/circuitpython/tools/git-checkout-latest-tag.sh
blob: 69fa2ced4f6a3f3f2e0ebcf3cca6dc433e5724bf (plain)
1
2
3
4
5
6
7
8
#!/bin/bash

# SPDX-FileCopyrightText: 2014 MicroPython & CircuitPython contributors (https://github.com/adafruit/circuitpython/graphs/contributors)
#
# SPDX-License-Identifier: MIT

git fetch --tags
git checkout $(git describe --tags `git rev-list --tags --max-count=1`)