mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-20 10:38:42 +01:00
bfe1ba2f5b
Chose 12 because the kernel uses it: https://public-inbox.org/git/CA+55aFy0_pwtFOYS1Tmnxipw9ZkRNCQHmoYyegO00pjMiZQfbg@mail.gmail.com/raw And also because it's a nice number.
13 lines
421 B
Plaintext
Executable File
13 lines
421 B
Plaintext
Executable File
# Copyright (c) 2020 The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
#
|
|
# A helper script to be sourced into the gitian descriptors
|
|
|
|
if RECENT_TAG="$(git describe --exact-match HEAD)"; then
|
|
VERSION="${RECENT_TAG#v}"
|
|
else
|
|
VERSION="$(git rev-parse --short=12 HEAD)"
|
|
fi
|
|
DISTNAME="bitcoin-${VERSION}"
|