chiark / gitweb /
dgit: Move determine_whether_split_brain further up the file
[dgit.git] / po / remove-potcdate
1 #! /usr/bin/perl -n
2
3 BEGIN {
4     $seen_potcdate = 0;
5 }
6
7 if (not $seen_potcdate and /^"POT-Creation-Date: .*"/) {
8     $seen_potcdate = 1;
9     next;
10 }
11 print;