From d8d9f88fef61f0b8a4de34439a244a067efdb8f9 Mon Sep 17 00:00:00 2001 From: Jonathan Guyer Date: Wed, 14 Aug 2024 17:20:30 -0700 Subject: [PATCH] Switch source for dictionaries cgit.freedesktop.org has been down for weeks without explanation --- .azure/pipelines.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.azure/pipelines.yml b/.azure/pipelines.yml index f539deaee0..a45e2b0bda 100644 --- a/.azure/pipelines.yml +++ b/.azure/pipelines.yml @@ -41,8 +41,11 @@ stages: pip_packages: pyspelling - bash: | - wget -O en_US.aff https://cgit.freedesktop.org/libreoffice/dictionaries/plain/en/en_US.aff?id=a4473e06b56bfe35187e302754f6baaa8d75e54f - wget -O en_US.dic https://cgit.freedesktop.org/libreoffice/dictionaries/plain/en/en_US.dic?id=a4473e06b56bfe35187e302754f6baaa8d75e54f + # cgit.freedesktop.org has been down for weeks without explanation + # wget -O en_US.aff https://cgit.freedesktop.org/libreoffice/dictionaries/plain/en/en_US.aff?id=a4473e06b56bfe35187e302754f6baaa8d75e54f + # wget -O en_US.dic https://cgit.freedesktop.org/libreoffice/dictionaries/plain/en/en_US.dic?id=a4473e06b56bfe35187e302754f6baaa8d75e54f + wget -O en_US.aff https://raw.githubusercontent.com/freedesktop-unofficial-mirror/libreoffice__dictionaries/master/en/en_US.aff + wget -O en_US.dic https://raw.githubusercontent.com/freedesktop-unofficial-mirror/libreoffice__dictionaries/master/en/en_US.dic displayName: Obtain dictionaries - bash: |