Rename revbank.oepl to .revbank.oepl

Generally, files that revbank writes to are hidden.

(revbank.accounts and revbank.statiegeld were mistakes.)
This commit is contained in:
Juerd Waalboer 2025-01-05 01:17:46 +01:00
parent 0c071f3830
commit 4d1dee6794
2 changed files with 3 additions and 3 deletions

View file

@ -222,7 +222,7 @@ sub draw_hwtype_3 ($product) {
return $image;
}
my @lines = slurp "revbank.oepl";
my @lines = slurp ".revbank.oepl";
my %new_hwtype;
my $products = read_products;
@ -256,5 +256,5 @@ for my $line (@lines) {
}
if (%new_hwtype) {
spurt "revbank.oepl", @lines;
spurt ".revbank.oepl", @lines;
}

View file

@ -2,7 +2,7 @@
use RevBank::Products qw(read_products);
use FindBin qw($Bin);
my $fn = "revbank.oepl";
my $fn = ".revbank.oepl";
my $hex = '[0-9A-F]';
my $mac_regex = qr/^(?:$hex {12}|$hex {14}|$hex {16})$/x;