git-scripts

Scripts for managing (sta-)git repos
git clone git://git.christianermann.dev/git-scripts
Log | Files | Refs | LICENSE

repo-full-site.sh (203B)


      1 #! /bin/sh
      2 
      3 set -eu
      4 
      5 CONFIG_PATH="/home/git/config.rc"
      6 . "${CONFIG_PATH}"
      7 
      8 repo-index
      9 for repo in "${GIT_ROOT}"/*; do
     10     if [ -d "${repo}" ]; then
     11     	cd "${repo}" || exit 1
     12     	repo-site
     13     fi
     14 done