blob: e9a05aa3d07bff5824fa9408765e841956c52ee7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env bash
##
# Rebuild the repository using repose
main() {
source $(dirname $0)/config.bash
"$REPOSE_BINARY" "$DATABASE" --root "$REPO_ROOT" --pool "$REPO_POOL" -v --xz --files
}
main "$@"
|