index : builder | |
Archlinux32 build system | gitolite user |
summaryrefslogtreecommitdiff |
author | Erich Eckner <git@eckner.net> | 2017-08-31 16:08:11 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2017-08-31 16:08:11 +0200 |
commit | 906480fae444bfc44070836963ca613e438f5abe (patch) | |
tree | c74f1903f1a2decd61782f62797fc801c4907123 /conf | |
parent | 71e420d29b063dec02fd1c8a85fd5237ba3cefb2 (diff) |
-rwxr-xr-x | conf/default.conf | 16 |
diff --git a/conf/default.conf b/conf/default.conf index 731f22c..fcaa39a 100755 --- a/conf/default.conf +++ b/conf/default.conf @@ -68,10 +68,18 @@ straws_that_might_repair_failing_builds=$( webserver_directory='/srv/http' # known package repositories -standalone_package_repositories='build-support gnome-unstable kde-unstable' -stable_package_repositories='community core extra' -testing_package_repositories='community-testing testing' -staging_package_repositories='community-staging staging' +standalone_package_repositories=$( + printf '%s\n' 'build-support' 'gnome-unstable' 'kde-unstable' +) +stable_package_repositories=$( + printf '%s\n' 'community' 'core' 'extra' +) +testing_package_repositories=$( + printf '%s\n' 'community-testing' 'testing' +) +staging_package_repositories=$( + printf '%s\n' 'community-staging' 'staging' +) # possibly pull in custom modifications |