use UTC for datestamp in Changes file, not local time
Karen Etheridge [Tue, 8 Jul 2014 01:28:52 +0000 (18:28 -0700)]
lib/Distar.pm

index 26ed270..6bee4f1 100644 (file)
@@ -101,7 +101,7 @@ sub run_preflight {
     length && die "Outstanding changes";
   }
   my $ymd = sprintf(
-    "%i-%02i-%02i", (localtime)[5]+1900, (localtime)[4]+1, (localtime)[3]
+    "%i-%02i-%02i", (gmtime)[5]+1900, (gmtime)[4]+1, (gmtime)[3]
   );
   my $changes_line = "$version - $ymd\n";
   my @cached = grep /^\+/, `git diff --cached -U0`;