Skip to content

Commit 36eddc3

Browse files
committed
debug script
1 parent af5b63a commit 36eddc3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/scripts/codespell.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
#!/bin/bash
2+
set -ex
23

34
OUTPUT=$1
4-
5-
set -ex
65
# codespell --quiet-level=2 --skip "*.h,*.cmake,*.c,*.hpp,*.cpp,*.sh,*.py,test/supp/*.supp" -i 0 -L "ASSER,Tne,ba,BA"
76

8-
SCAN_RESULT=$(codespell --quiet-level=2 --skip "*.h,*.cmake,*.c,*.hpp,*.cpp,*.sh,*.py,test/supp/*.supp" -i 0 -L "ASSER,Tne,ba,BA")
7+
SCAN_RESULT=`codespell --quiet-level=2 --skip "*.h,*.cmake,*.c,*.hpp,*.cpp,*.sh,*.py,test/supp/*.supp" -L "ASSER,Tne,ba,BA"`
98
echo -e "${SCAN_RESULT}"
109
echo -e "${SCAN_RESULT}" > ${OUTPUT}
1110
cat ${OUTPUT}

0 commit comments

Comments
 (0)