- Modified update-holidays.pl script to include the MIT license. - Added the URLs used to download the data, in the data. - Added a refresh script to freshen the files.
10 lines
166 B
Bash
Executable File
10 lines
166 B
Bash
Executable File
#! /bin/bash
|
|
|
|
for i in holidays*rc
|
|
do
|
|
locale=${i:9:5}
|
|
echo $locale
|
|
../../scripts/add-ons/update-holidays.pl --locale $locale --file holidays.${locale}.rc
|
|
done
|
|
|