diff options
author | Erich Eckner <git@eckner.net> | 2017-07-04 21:57:07 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2017-07-04 21:57:07 +0200 |
commit | b8df7a8b87508d851b46c0078b73727e2c346190 (patch) | |
tree | a69ba7a865f2e69b17faac7928b9f36dd8658e67 /bin/db-update | |
parent | 8f5836072478f46131e90c7df004accf0172004f (diff) | |
download | builder-b8df7a8b87508d851b46c0078b73727e2c346190.tar.xz |
bin/common-functions, bin/db-update, bin/return-assignment: recognize build-support as untested, unstaged repository
Diffstat (limited to 'bin/db-update')
-rwxr-xr-x | bin/db-update | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/bin/db-update b/bin/db-update index e1e785a..97ca393 100755 --- a/bin/db-update +++ b/bin/db-update @@ -558,7 +558,10 @@ move_packages $( continue fi - printf '%s/%s/%s\n' "${package}" "$(official_or_community ${package})testing" "$(repository_of_package "${package}")" + printf '%s/%s/%s\n' \ + "${package}" \ + "$(official_or_community "${package}" 'testing')" \ + "$(repository_of_package "${package}")" done @@ -574,9 +577,10 @@ move_packages $( continue fi - is_community="$(official_or_community "${package}")" - - printf '%s/%s/%s\n' "${package}" "${is_community}staging" "${is_community}testing" + printf '%s/%s/%s\n' \ + "${package}" \ + "$(official_or_community "${package}" 'staging')" \ + "$(official_or_community "${package}" 'testing')" done |