diff options
-rwxr-xr-x | bin/ssic | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -12,6 +12,9 @@ use warnings; use Getopt::Long; use CGI::SSI; +my $VERSION; +$VERSION = '1.0.0'; + sub main { my %opts; @@ -89,7 +92,7 @@ sub version { my ($fh) = @_; - print("ssic 0.1.0\n"); + printf("ssic %s\n", $VERSION); print("Copyright (C) 2013 Patrick \"P. J.\" McDermott\n"); print("License GPLv3+: GNU GPL version 3 or later " . "<http://gnu.org/licenses/gpl.html>.\n"); |