blob: 7a959611c155d75d6468f939e3a26b7aca6baccd (
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 --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}"
|