From 8725a271d150b946730c5451172eae433edcf164 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Tue, 17 Jan 2012 17:58:08 +0100 Subject: [PATCH] add support for experimental suite --- debian_build.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/debian_build.py b/debian_build.py index d043b64..332c370 100755 --- a/debian_build.py +++ b/debian_build.py @@ -338,7 +338,7 @@ if __name__ == '__main__': ) exit_error() - if options.distribution in ('testing', 'staging', 'unstable', 'pre-staging'): + if options.distribution in ('testing', 'staging', 'unstable', 'pre-staging','experimental'): daily_date = datetime.datetime.now().strftime('%Y%m%d%H%M%S') if options.distribution in ('testing', 'staging'): @@ -395,7 +395,9 @@ if __name__ == '__main__': cmd = ['/usr/bin/git', 'commit', '-a', '-m', 'add new changelog entry'] subprocess.check_call(cmd) - if options.distribution in ('unstable' , 'experimental', 'pre-staging'): + if options.distribution in ('experimental'): + pb_suite='experimental' + elif options.distribution in ('unstable' , 'experimental', 'pre-staging'): pb_suite='pre-staging' elif options.distribution in ('testing', 'staging'): pb_suite='staging' -- 2.39.5