mirror of
https://github.com/hyprwm/Hyprland
synced 2025-01-10 02:09:48 +01:00
914851b91a
* better versioning * meson: better versioning * nix: better versioning --------- Co-authored-by: Mihai Fufezan <fufexan@protonmail.com>
14 lines
No EOL
621 B
Bash
Executable file
14 lines
No EOL
621 B
Bash
Executable file
#!/bin/sh
|
|
cp ./src/version.h.in ./src/version.h -fr
|
|
|
|
HASH=$(git rev-parse HEAD)
|
|
BRANCH=$(git rev-parse --abbrev-ref HEAD)
|
|
MESSAGE=$(git show ${GIT_COMMIT_HASH} | head -n 5 | tail -n 1 | sed -e 's/#//g' -e 's/\"//g')
|
|
DIRTY=$(git diff-index --quiet HEAD -- || echo \"dirty\")
|
|
TAG=$(git describe --tags)
|
|
|
|
awk -i inplace "{sub(/@HASH@/,\"${HASH}\")}1" ./src/version.h
|
|
awk -i inplace "{sub(/@BRANCH@/,\"${BRANCH}\")}1" ./src/version.h
|
|
awk -i inplace "{sub(/@MESSAGE@/,\"${MESSAGE}\")}1" ./src/version.h
|
|
awk -i inplace "{sub(/@DIRTY@/,\"${DIRTY}\")}1" ./src/version.h
|
|
awk -i inplace "{sub(/@TAG@/,\"${TAG}\")}1" ./src/version.h |