blob: 5853a7b384ccdf9425d452e16f90e93a7c6fd39d (
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 "$ROOT" --pool "$POOL" -v --xz --files
}
main "$@"
|