diff options
author | Florian Pritz <bluewind@xinu.at> | 2014-01-31 23:33:37 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2015-05-27 15:46:04 +0200 |
commit | bf9c9f045dbd0f329dc914adc2b5ef9d79870f21 (patch) | |
tree | 46fb8f1dfe7c08587dfdfe6f00b471e49e19ce6e /db-functions | |
parent | e783d30ac46e440869eacbfebbf3d9616952448c (diff) | |
download | dbscripts-bf9c9f045dbd0f329dc914adc2b5ef9d79870f21.tar.gz dbscripts-bf9c9f045dbd0f329dc914adc2b5ef9d79870f21.tar.xz |
bugfix
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'db-functions')
-rw-r--r-- | db-functions | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/db-functions b/db-functions index 87488d2..05ff1b9 100644 --- a/db-functions +++ b/db-functions @@ -540,7 +540,10 @@ arch_db_add() { done arch_repo_add "${repo}" "${tarch}" "${pkgfiles[@]}" - arch_history_add "$repo" "$dstdir/$pkgfile" "$tarch" + + for pkgfile in "${pkgfiles[@]}"; do + arch_history_add "$repo" "$dstdir/$pkgfile" "$tarch" + done } arch_db_remove() { |