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 ade0e7e commit 90fb5faCopy full SHA for 90fb5fa
1 file changed
.github/workflows/check.yml
@@ -234,12 +234,12 @@ jobs:
234
working-directory: cpython/Doc/locales/pt_BR/LC_MESSAGES
235
continue-on-error: true
236
run: |
237
+ wd=$PWD
238
dirs=". $(find * -type d | sort)"
239
for dir in $dirs; do
240
echo "::group::{$dir}"
- cd $dir
241
+ cd $wd/$dir
242
po_files=$(find -maxdepth 1 -name '*.po' | sort)
243
python ../../../../../scripts/check_spell.py $po_files || :
- cd ..
244
echo "::endgroup::"
245
done
0 commit comments