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-feeds.sh (401B)


      1 #!/bin/bash
      2 
      3 set -eu
      4 
      5 HERE=$(dirname "$0")
      6 ROOT=${HERE}/../..
      7 
      8 . "${ROOT}"/settings.sh
      9 
     10 FEEDS=("$@")
     11 
     12 for feed in "${FEEDS[@]}"
     13 do
     14     concert=$(dirname "${feed}")/concerts.in
     15 
     16     PYTHONPATH="${ROOT}"                                                \
     17     "${HERE}"/build-feed.py "${concert}" "${feed}"                      \
     18                             "${HERE}"/concerts-pubdates.json ${domain}
     19 done