aboutsummaryrefslogtreecommitdiffstats
path: root/ui-shared.c
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2007-06-18 09:42:10 +0200
committerLars Hjemli <hjemli@gmail.com>2007-06-18 10:38:40 +0200
commitf69250358a74efa5d7d9c562b2cdd80fad1430f1 (patch)
tree19c0ddab227d1c27a49046e559618cd067169591 /ui-shared.c
parentAdd cgit_diff_link() (diff)
downloadcgit-f69250358a74efa5d7d9c562b2cdd80fad1430f1.tar.xz
cgit-f69250358a74efa5d7d9c562b2cdd80fad1430f1.zip
Add version info from git-describe
A new script, gen-version.sh, is now invoked from 'make version' to generate the file VERSION. This file contains a version identifier generated by git-describe and is included in the Makefile. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to '')
-rw-r--r--ui-shared.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-shared.c b/ui-shared.c
index 15d8254..110c696 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -262,7 +262,7 @@ void cgit_print_docstart(char *title, struct cacheitem *item)
html("<title>");
html_txt(title);
html("</title>\n");
- htmlf("<meta name='generator' content='cgit v%s'/>\n", cgit_version);
+ htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version);
html("<link rel='stylesheet' type='text/css' href='");
html_attr(cgit_css);
html("'/>\n");