mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-05-19 12:51:29 +00:00
ubuntu-build: Default to DEV-proposed in batch mode. Thanks Scott
Kitterman(LP: #1088010)
This commit is contained in:
parent
5f3e359ab6
commit
8faeb46334
2
debian/changelog
vendored
2
debian/changelog
vendored
@ -19,6 +19,8 @@ ubuntu-dev-tools (0.146) UNRELEASED; urgency=low
|
|||||||
- Don't ignore -k (LP: #1083688)
|
- Don't ignore -k (LP: #1083688)
|
||||||
- Check that dput is installed when uploading, thanks H.-Dirk Schmitt
|
- Check that dput is installed when uploading, thanks H.-Dirk Schmitt
|
||||||
(LP: #1086342)
|
(LP: #1086342)
|
||||||
|
* ubuntu-build: Default to DEV-proposed in batch mode. Thanks Scott
|
||||||
|
Kitterman(LP: #1088010)
|
||||||
|
|
||||||
-- Julian Taylor <jtaylor@ubuntu.com> Sat, 24 Nov 2012 21:07:01 +0100
|
-- Julian Taylor <jtaylor@ubuntu.com> Sat, 24 Nov 2012 21:07:01 +0100
|
||||||
|
|
||||||
|
@ -217,8 +217,10 @@ def main():
|
|||||||
# filter out duplicate and invalid architectures
|
# filter out duplicate and invalid architectures
|
||||||
archs.intersection_update(valid_archs)
|
archs.intersection_update(valid_archs)
|
||||||
|
|
||||||
release = (options.series or
|
release = options.series
|
||||||
Distribution('ubuntu').getDevelopmentSeries().name)
|
if not release:
|
||||||
|
release = (Distribution('ubuntu').getDevelopmentSeries().name
|
||||||
|
+ '-proposed')
|
||||||
try:
|
try:
|
||||||
(release, pocket) = split_release_pocket(release)
|
(release, pocket) = split_release_pocket(release)
|
||||||
except PocketDoesNotExistError, error:
|
except PocketDoesNotExistError, error:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user