blob: acda00cff442cc78a01038110049afc14cdca6dc (
plain)
1 #!/usr/bin/env bash
2 dest=${WEB}/oper.io.services/crux-ports-arm64
3
4 # Copy files from working cache to destination
5 rsync -av --inplace --delete --exclude hooks --exclude '.git*' ./ ${dest}/ || true
6
7 printf '[git] Updating %s\n' ${FILES_M[@]:-nothing}
8 printf '[git] Removing %s\n' ${FILES_D[@]:-nothing}
9
10 # Regen repo httpup files
11 httpup-repgen "${dest}"
|