summaryrefslogtreecommitdiff
path: root/bin/db-update
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2017-07-06 19:38:47 +0200
committerErich Eckner <git@eckner.net>2017-07-06 19:38:47 +0200
commit186cc5911b50f6b1db11abe3b08d8fdcf6e82714 (patch)
treea72ea9de35564489dc8575a63d612dcda4c0264a /bin/db-update
parentb4324cefc5b0bbde1f28fdd8586f361cf8c8f432 (diff)
downloadbuilder-186cc5911b50f6b1db11abe3b08d8fdcf6e82714.tar.xz
bin/db-update: bugfix
Diffstat (limited to 'bin/db-update')
-rwxr-xr-xbin/db-update6
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/db-update b/bin/db-update
index 97ca393..14fca97 100755
--- a/bin/db-update
+++ b/bin/db-update
@@ -367,7 +367,11 @@ do
shift
done
-packages_to_stabilize=${packages_to_stabilize} ${@}
+packages_to_stabilize="$(
+ printf '%s\n' \
+ ${packages_to_stabilize} \
+ ${@}
+)"
if ! "${base_dir}/bin/sanity-check" -r; then
>&2 echo 'Build master is not sane.'