From 5ef3fe218c411ecb15b6dbe6ea129bbef28e7774 Mon Sep 17 00:00:00 2001 From: "Christoph M. Becker" Date: Wed, 9 Oct 2024 00:50:04 +0200 Subject: [PATCH] Download enchant dict from downloads.php.net Since windows.php.net is in the progress to be migrated to downloads.php.net anyway, we may as well fetch the dictionary from the new site right away. Closes GH-16310. --- .github/scripts/windows/test_task.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/windows/test_task.bat b/.github/scripts/windows/test_task.bat index 7856eb0fb0f..dc02281bf70 100644 --- a/.github/scripts/windows/test_task.bat +++ b/.github/scripts/windows/test_task.bat @@ -103,7 +103,7 @@ mkdir %~d0\usr\local\share\enchant\hunspell if %errorlevel% neq 0 exit /b 3 echo Fetching enchant dicts pushd %~d0\usr\local\share\enchant\hunspell -powershell -Command wget http://windows.php.net/downloads/qa/appveyor/ext/enchant/dict.zip -OutFile dict.zip +powershell -Command wget https://downloads.php.net/~windows/qa/appveyor/ext/enchant/dict.zip -OutFile dict.zip unzip dict.zip del /q dict.zip popd