diff options
author | Thomas Trepl <thomas@linuxfromscratch.org> | 2023-09-11 13:18:30 +0200 |
---|---|---|
committer | Thomas Trepl <thomas@linuxfromscratch.org> | 2023-09-11 13:18:30 +0200 |
commit | c5fe6ee346919cc7c33780d7b91350e4bf57b97b (patch) | |
tree | 05dcfcc75a67c840479f70779736a8287ae461a4 | |
parent | 0627fc2281ad4ef567ae49db6938a5c37bde712f (diff) |
Do not retrieve yr from sysdate
-rwxr-xr-x | git-version.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-version.sh b/git-version.sh index f6ff6d44a..db2ed62a1 100755 --- a/git-version.sh +++ b/git-version.sh @@ -24,7 +24,7 @@ if ! git status > /dev/null; then echo "<!ENTITY version \"unknown-systemd\">" >> version.ent echo "]]>" >> version.ent echo "<!ENTITY releasedate \"unknown\">" >> version.ent - echo "<!ENTITY copyrightdate \"1999-$(date +%Y)\">" >> version.ent + echo "<!ENTITY copyrightdate \"1999-2023\">" >> version.ent exit 0 fi |