aboutsummaryrefslogtreecommitdiff
path: root/bin/license
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <msabate@suse.com>2018-01-02 09:26:27 +0100
committerMiquel Sabaté Solà <msabate@suse.com>2018-01-02 09:26:27 +0100
commite64d1d93755b228ddb8ca0d5784c87b5778176f4 (patch)
tree8e437d99a1b9c9751592b1ef969a7f3f45dbbff7 /bin/license
parent01f9e698bd904897a8945f026fbb87368e404e2d (diff)
downloaddotfiles-e64d1d93755b228ddb8ca0d5784c87b5778176f4.tar.gz
dotfiles-e64d1d93755b228ddb8ca0d5784c87b5778176f4.zip
Updated license notice
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to 'bin/license')
-rwxr-xr-xbin/license5
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/license b/bin/license
index 7007df5..b877d04 100755
--- a/bin/license
+++ b/bin/license
@@ -1,5 +1,5 @@
#!/usr/bin/perl -w
-# Copyright (C) 2014-2017 Miquel Sabaté Solà <mikisabate@gmail.com>
+# Copyright (C) 2014-2018 Miquel Sabaté Solà <mikisabate@gmail.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -65,7 +65,7 @@ my $name = 'Miquel';
# The current year. I previously thought to be clever and set it to `date +%Y`,
# but then I decided that I didn't want to be clever here to avoid problems and
# be more flexible.
-my $current_year = '2015';
+my $current_year = '2018';
# The command that feeds this command if no command line argument was given.
my $default_cmd = "git grep -l 'Copyright' | xargs";
@@ -131,4 +131,3 @@ my @files = (@ARGV > 0) ? @ARGV : split(' ', `$default_cmd`);
foreach my $f (@files) {
update_file($f);
}
-