summaryrefslogtreecommitdiff
path: root/cgi/index.pl
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2013-10-09 16:47:59 +0200
committerDaniel Friesel <derf@finalrewind.org>2013-10-09 16:47:59 +0200
commit532d3ebc697487c9b416b07a7e72e401e204145a (patch)
tree0e2a43d2a9b25b20f666ea6795b39c6c09ae2749 /cgi/index.pl
parent72bc2b2302c985ceedc10f03a849f91c8733210d (diff)
landing page: show git version string
Diffstat (limited to 'cgi/index.pl')
-rw-r--r--cgi/index.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/cgi/index.pl b/cgi/index.pl
index 10abe9b..a0d75a7 100644
--- a/cgi/index.pl
+++ b/cgi/index.pl
@@ -8,7 +8,7 @@ use utf8;
no if $] >= 5.018, warnings => "experimental::smartmatch";
-our $VERSION = '0.04';
+our $VERSION = qx{git describe --dirty} || '0.04';
my $refresh_interval = 900;