taler-rust

GNU Taler code in Rust. Largely core banking integrations.
Log | Files | Refs | Submodules | README | LICENSE

job.sh (383B)


      1 #!/bin/bash
      2 set -exuo pipefail
      3 
      4 job_dir=$(dirname "${BASH_SOURCE[0]}")
      5 
      6 skip=$(cat <<EOF
      7 */doc/prebuilt/*
      8 */.git/*
      9 */.ci/*
     10 */target/*
     11 */contrib/ci/*
     12 *.conf
     13 ./common/taler-common/src/types/iban/registry.rs
     14 ./common/taler-common/benches/iban.rs
     15 ./common/taler-common/src/error_code.rs
     16 EOF
     17 );
     18 
     19 echo Current directory: `pwd`
     20 
     21 codespell -I "${job_dir}"/dictionary.txt -S ${skip//$'\n'/,}