anastasis

Credential backup and recovery protocol and service
Log | Files | Refs | Submodules | README | LICENSE

job.sh (592B)


      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 */build/*
     14 */contrib/gana/*
     15 */contrib/locale/*
     16 */doc/prebuilt/*
     17 */doc/doxygen/*
     18 */doc/system-documentation/*
     19 */doc/sphinx/_exts/*
     20 */doc/anastasis.texi
     21 */doc/manual.info
     22 */doc/texinfo.tex
     23 */doc/highlight.pack.js
     24 */po/*
     25 *build-aux*
     26 *.cache/*
     27 */.git/*
     28 */contrib/ci/*
     29 depcomp
     30 *libtool*
     31 ltmain.sh
     32 *.log
     33 */m4/*
     34 *.m4
     35 *.rpath
     36 EOF
     37 );
     38 
     39 echo Current directory: `pwd`
     40 
     41 codespell -I "${job_dir}"/dictionary.txt -S ${skip//$'\n'/,}