job.sh (429B)
1 #!/bin/bash 2 set -exuo pipefail 3 4 job_dir=$(dirname "${BASH_SOURCE[0]}") 5 6 skip=$(cat <<EOF 7 ABOUT-NLS 8 configure 9 config.guess 10 configure~ 11 */debian/upstream/* 12 */debian/.debhelper/* 13 */doc/prebuilt/* 14 */testing/test_sync_api_home/* 15 *build-aux* 16 *.cache/* 17 */.git/* 18 */contrib/ci/* 19 depcomp 20 *libtool* 21 ltmain.sh 22 *.log 23 *.tag 24 */m4/* 25 *.m4 26 *.rpath 27 EOF 28 ); 29 30 echo Current directory: `pwd` 31 32 codespell -I "${job_dir}"/dictionary.txt -S ${skip//$'\n'/,}