We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f763c2 commit 4f359c4Copy full SHA for 4f359c4
.github/workflows/test.yml
@@ -26,9 +26,11 @@ jobs:
26
run: |
27
git clone https://github.com/errata-ai/Microsoft.git
28
mkdir ./styles/Microsoft
29
- ls -alR ./Microsoft/Microsoft
30
- pwd
31
- cp –r ./Microsoft/Microsoft/ ./styles/Microsoft
+ find ./Microsoft/Microsoft/ -type f | while read fname; do
+ dirname=`dirname "$fname"`
+ filename=`basename "$fname"`
32
+ cp "${dirname}/$filename" "./styles/Microsoft"
33
+ done
34
make deps
35
VALEFILES=$(find -L ./docs/ -type d \( -path "./docs/plone.restapi/lib/*" -o -path "./docs/plone.restapi/performance/*" \) -prune -false -o -type f -name "*.md" -print)
36
make vale $VALEFILES
0 commit comments