blob: 15039d44f930f429c4ce00a0d0900829a3afbcab (
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 cp -r ./* ${dest}/
6
7 for i in ${FILES_E[*]}; do
8 printf '[git] Updating %s\n' "${i}"
9 done
10
11 for i in ${FILES_D[*]}; do
12 printf '[git] Removing %s\n' "${i}"
13 done
14
15 # Regen repo httpup files
16 httpup-repgen "${dest}"
|