mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-22 15:37:26 +08:00
24 lines
457 B
Bash
Executable File
24 lines
457 B
Bash
Executable File
#!/bin/sh
|
|
|
|
GIT=$(which git)
|
|
if [ "${GIT}" = "" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
VERSION=$(git describe --always --tags --dirty)
|
|
if [ $? -ne 0 ]; then
|
|
VERSION=$(cat VERSION)
|
|
fi
|
|
|
|
if [ "${VERSION}" = "" ]; then
|
|
VERSION="unknown"
|
|
fi
|
|
|
|
echo -n "${VERSION}" > VERSION
|
|
grep -q \"${VERSION}\" src/version.hpp
|
|
RV=$?
|
|
if [ $RV -ne 0 ]; then
|
|
echo "#pragma once" > src/version.hpp
|
|
echo "static const char MERGERFS_VERSION[] = \"${VERSION}\";" >> src/version.hpp
|
|
fi
|