diff options
author | Daniel Friesel <derf@finalrewind.org> | 2013-10-09 16:47:59 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2013-10-09 16:47:59 +0200 |
commit | 532d3ebc697487c9b416b07a7e72e401e204145a (patch) | |
tree | 0e2a43d2a9b25b20f666ea6795b39c6c09ae2749 /cgi | |
parent | 72bc2b2302c985ceedc10f03a849f91c8733210d (diff) |
landing page: show git version string
Diffstat (limited to 'cgi')
-rw-r--r-- | cgi/index.pl | 2 |
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; |