quatuorbellefeuille.com

Content, build scripts and admin scripts for the Bellefeuille Quartet website.
git clone https://git.kevinlegouguec.net/quatuorbellefeuille.com
Log | Files | Refs

build-indexes.sh (239B)


      1 #!/bin/bash
      2 
      3 set -eu
      4 
      5 HERE=$(dirname "$0")
      6 ROOT=${HERE}/..
      7 
      8 for directory
      9 do
     10     concert="${directory}"/concerts.in
     11     index="${directory}"/index.html
     12 
     13     PYTHONPATH="${ROOT}" \
     14     "${HERE}"/update-index.py "${concert}" "${index}"
     15 done