mirror of
https://github.com/Telecominfraproject/wlan-cloud-rrm.git
synced 2025-10-29 17:52:24 +00:00
9 lines
258 B
Bash
Executable File
9 lines
258 B
Bash
Executable File
#!/bin/sh
|
|
# Print the "build version" to be appended to the package version
|
|
|
|
if [ -d .git ] && [ -x "$(command -v git)" ]; then
|
|
BUILD_NUM="$(git rev-list --count --first-parent HEAD)"
|
|
HASH="$(git rev-parse --short HEAD)"
|
|
echo " - $HASH($BUILD_NUM)"
|
|
fi
|