From 4d1dee67946a8a97886639f58eccfa4fbb882f88 Mon Sep 17 00:00:00 2001 From: Juerd Waalboer Date: Sun, 5 Jan 2025 01:17:46 +0100 Subject: [PATCH] Rename revbank.oepl to .revbank.oepl Generally, files that revbank writes to are hidden. (revbank.accounts and revbank.statiegeld were mistakes.) --- contrib/openepaperlink.pl | 4 ++-- plugins/openepaperlink | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/openepaperlink.pl b/contrib/openepaperlink.pl index b6b1a9e..6bccd1e 100644 --- a/contrib/openepaperlink.pl +++ b/contrib/openepaperlink.pl @@ -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; } diff --git a/plugins/openepaperlink b/plugins/openepaperlink index 604be3c..f95d64c 100644 --- a/plugins/openepaperlink +++ b/plugins/openepaperlink @@ -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;