• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/sh
2# SPDX-License-Identifier: MIT or GPL-2.0-only
3
4GITDESC=$(git describe --dirty|sed -e 's/^v//' 2>/dev/null)
5
6if [ -z "$GITDESC" ]; then
7    GITDESC="0.unknown"
8fi
9
10echo $GITDESC
11
12