mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00

- 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.
9 lines
166 B
Bash
Executable file
9 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
|
|
|