mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
8 lines
165 B
Bash
Executable file
8 lines
165 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
|