Use working xliff validation

We needed to download the file beforehand.
But this no longer works.
Instead not downloading now works again.
This commit is contained in:
Daniel Siepmann (Codappix) 2025-02-10 08:51:21 +01:00
parent 9416735615
commit 1ff391af7f

View file

@ -32,9 +32,8 @@ let
text = ''
project-install
xmllint --schema vendor/phpunit/phpunit/phpunit.xsd --noout phpunit.xml.dist
wget --no-check-certificate https://docs.oasis-open.org/xliff/v1.2/os/xliff-core-1.2-strict.xsd --output-document=xliff-core-1.2-strict.xsd
# shellcheck disable=SC2046
xmllint --schema xliff-core-1.2-strict.xsd --noout $(find Resources -name '*.xlf')
xmllint --noout $(find Resources -name '*.xlf')
'';
};
projectCodingGuideline = pkgs.writeShellApplication {