Skip to content

Commit

Permalink
user default delim?
Browse files Browse the repository at this point in the history
  • Loading branch information
Lilith Hafner authored and Lilith Hafner committed Oct 16, 2023
1 parent 6f18b0c commit 680bd4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/SpellCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ jobs:
echo a
NEW_FILES=$(git diff-index --name-only --diff-filter=d FETCH_HEAD)
echo b
NEW_TYPOS=$(echo -n $NEW_FILES | xargs -d '\n' "${{ runner.temp }}/typos/typos" --format json)
NEW_TYPOS=$(echo -n $NEW_FILES | xargs "${{ runner.temp }}/typos/typos" --format json)
echo c
git checkout FETCH_HEAD -- $OLD_FILES
echo d
OLD_TYPOS=$(echo -n $OLD_FILES | xargs -d '\n' "${{ runner.temp }}/typos/typos" --format json)
OLD_TYPOS=$(echo -n $OLD_FILES | xargs "${{ runner.temp }}/typos/typos" --format json)
echo e
python -c '
import sys, json
Expand Down

0 comments on commit 680bd4b

Please sign in to comment.