From beabcbe2db77145e8aa7d1d90dd2f6cfa198a7a8 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Thu, 5 Feb 2015 09:39:39 +0100 Subject: [PATCH 1/1] countries: move flag images into data/, ignore --- .gitignore | 1 + countries.plp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e503b91..b117a19 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # local copies of downloaded data /data/emoji/ +/data/flag # source data not used directly but converted to includes below /data/countryInfo.txt diff --git a/countries.plp b/countries.plp index 3979501..b310a2f 100644 --- a/countries.plp +++ b/countries.plp @@ -36,7 +36,7 @@ my $cc = do 'countries.inc.pl'; $ref ||= $code; local $_ = $ref; if (exists $get{show}) { - my $img = "flag/$ref.png"; + my $img = "data/flag/$ref.png"; $_ = sprintf '%s', $img, $ref if -e $img; } else { -- 2.30.0