Skip to content

Commit

Permalink
DevKit updates (#621)
Browse files Browse the repository at this point in the history
  • Loading branch information
SonataCI committed Aug 10, 2021
1 parent 003952c commit 862acc0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
9 changes: 0 additions & 9 deletions .flintci.yml

This file was deleted.

12 changes: 11 additions & 1 deletion Makefile
Expand Up @@ -54,7 +54,7 @@ cs-fix-php:
.PHONY: cs-fix-php

cs-fix-xml:
find . \( -name '*.xml' -or -name '*.xliff' \) \
find . -name '*.xml' \
-not -path './vendor/*' \
-not -path './src/Resources/public/vendor/*' \
| while read xmlFile; \
Expand All @@ -63,6 +63,16 @@ cs-fix-xml:
done
.PHONY: cs-fix-xml

cs-fix-xliff:
find . -name '*.xliff' \
-not -path './vendor/*' \
-not -path './src/Resources/public/vendor/*' \
| while read xmlFile; \
do \
XMLLINT_INDENT=' ' xmllint --encode UTF-8 --format "$$xmlFile" --output "$$xmlFile"; \
done
.PHONY: cs-fix-xliff

build:
mkdir $@

Expand Down

0 comments on commit 862acc0

Please sign in to comment.