From 2f0ec493c3044954129667d533e5cd1f54f7d2f1 Mon Sep 17 00:00:00 2001 From: Mathias Klette Date: Tue, 28 May 2013 13:51:44 +0200 Subject: [PATCH] debian_build: fix - remove last occurences of obsolete var DISTRIBUTION --- debian_build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian_build.py b/debian_build.py index aee42e0..3956966 100755 --- a/debian_build.py +++ b/debian_build.py @@ -195,7 +195,7 @@ if __name__ == '__main__': commit = curr_commit_id[0:7], ) pb_suite = 'develop-{dist}'.format(dist=curr_dist) - reprepro_base = '/srv/pb-' + ENV['DISTRIBUTION'] + reprepro_base = '/srv/pb-{dist}'.format(dist=curr_dist) # reset actions # .. always include successful build packages into CIDB if curr_dist == 'squeeze': @@ -216,7 +216,7 @@ if __name__ == '__main__': commit = curr_commit_id[0:7], ) pb_suite = 'experimental-{dist}'.format(dist=curr_dist) - reprepro_base = '/srv/dev-' + ENV['DISTRIBUTION'] + reprepro_base = '/srv/dev-{dist}'.format(dist=curr_dist) else: logger.error('Don\'t know how to handle branch "{branch}".'.format( -- 2.39.5