aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-04-16 14:01:31 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-04-16 14:01:31 +0200
commit632e300c80cb9349b31880e3a43f94e0358fc78c (patch)
tree852a1f3afdce38fcde7eb8227dae55f579f5face
parent426f25eeb71aae2e15bcce601a65fd77b71d3e88 (diff)
Pin to Unicode 15.1 for now
-rwxr-xr-xgen/data-files4
1 files changed, 2 insertions, 2 deletions
diff --git a/gen/data-files b/gen/data-files
index 8fcaf22..156e4d5 100755
--- a/gen/data-files
+++ b/gen/data-files
@@ -4,7 +4,7 @@ cd "${0%/*}/.."
mkdir -p data
-readonly BASE=https://www.unicode.org/Public/UCD/latest/ucd
+readonly BASE='https://www.unicode.org/Public/15.1.0/ucd'
readonly PATHS='
auxiliary/GraphemeBreakProperty
@@ -33,6 +33,6 @@ VerticalOrientation
for path in $PATHS
do
name="data/${path##*/}"
- test -f "$name" || wget -q "$BASE/$path.txt" -O "$name" &
+ wget -q "$BASE/$path.txt" -O "$name" &
done
wait