xref: /aosp_15_r20/external/ublksrv/utils/genver.sh (revision 94c4a1e103eb1715230460aab379dff275992c20)
1#!/bin/sh
2# SPDX-License-Identifier: GPL-2.0
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