Skip to content

Commit ade0e7e

Browse files
authored
cd instead of pushd
1 parent cebdda8 commit ade0e7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,9 +237,9 @@ jobs:
237237
dirs=". $(find * -type d | sort)"
238238
for dir in $dirs; do
239239
echo "::group::{$dir}"
240-
pushd -n $dir
240+
cd $dir
241241
po_files=$(find -maxdepth 1 -name '*.po' | sort)
242242
python ../../../../../scripts/check_spell.py $po_files || :
243-
popd
243+
cd ..
244244
echo "::endgroup::"
245245
done

0 commit comments

Comments
 (0)