depolymerization

wire gateway for Bitcoin/Ethereum
Log | Files | Refs | Submodules | README | LICENSE

job.sh (363B)


      1 #!/bin/bash
      2 set -exuo pipefail
      3 
      4 job_dir=$(dirname "${BASH_SOURCE[0]}")
      5 
      6 skip=$(cat <<EOF
      7 */.git/*
      8 */.ci/*
      9 */target/*
     10 */contrib/ci/*
     11 *.conf
     12 *.log
     13 ./doc
     14 ./uri-pack/src/majestic_million.csv
     15 ./uri-pack/src/urltestdata.json
     16 ./testbench/env
     17 ./testbench/instrumentation
     18 EOF
     19 );
     20 
     21 echo Current directory: `pwd`
     22 
     23 codespell -I "${job_dir}"/dictionary.txt -S ${skip//$'\n'/,}