diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-09-26 14:45:07 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-09-26 14:45:07 -0300 |
commit | f16b5bfab292c9947dfe342b27f1c31cf6045728 (patch) | |
tree | 42afb538484a9a05e58fbee293e4d753d32657c6 | |
parent | 56694a1e73a5c91df075fa3307bdd40a9d1e520f (diff) |
add set command to db-sync-arm
-rwxr-xr-x | db-sync-arm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/db-sync-arm b/db-sync-arm index 853fee4..2e58802 100755 --- a/db-sync-arm +++ b/db-sync-arm @@ -14,6 +14,8 @@ # TODO # * make a tarball of files used for forensics +set -e + # Run as `V=true db-sync` to get verbose output VERBOSE=${V} extra=() @@ -72,7 +74,7 @@ init() { local pkgpool for _arch in "${OURARCHES[@]}"; do for _repo in "${ARMREPOS[@]}"; do - msg "Processing %s-%s" "${_repo}-${_arch}" + msg "Processing %s-%s" "${_repo}" "${_arch}" db_file=$(get_repo_file "${_repo}" "${_arch}")${DBEXT} files_file=$(get_repo_file "${_repo}" "${_arch}")${FILESEXT} |