]> Frank Brehm's Git Trees - profitbricks/jenkins-build-scripts.git/commitdiff
fix logic
authorHolger Levsen <holger@layer-acht.org>
Sat, 17 Sep 2011 16:46:52 +0000 (18:46 +0200)
committerHolger Levsen <holger@layer-acht.org>
Sat, 17 Sep 2011 16:46:52 +0000 (18:46 +0200)
debian_build.py

index 9b51263d1395e4f8930f389537d67164fe3555e5..b412be177cb082998b95af1d417ac49b0abf6485 100755 (executable)
@@ -422,9 +422,9 @@ if __name__ == '__main__':
         distribution = grep_dctrl.stdout.readline()
         distribution = distribution.strip()
         logger.info('Packet distribution is %s' % (distribution))
-        if (options.distribution in ('testing', 'staging') and not distribution in ('testing', 'staging')) or (options.distribution in ('stable', 'stable-proposed-updates', 'production', 'production-proposed-updates') and distribution in ('stable', 'stable-proposed-updates', 'production', 'production-proposed-updates')):
+        if (options.distribution in ('testing', 'staging') and not distribution in ('testing', 'staging')) or (options.distribution in ('stable', 'stable-proposed-updates', 'production', 'production-proposed-updates') and not distribution in ('stable', 'stable-proposed-updates', 'production', 'production-proposed-updates')):
             raise Exception(
-                    'Distribution %s in debian/changelog did not match branch %s' % (distribution, GIT_UPSTREAM_BRANCH)
+                    'Distribution %s in debian/changelog did not match branch %s' % (distribution, options.distribution)
             )
             exit_error()