elif GIT_BRANCH_NAME.startswith('hotfix/') or options.distribution in ('stable', 'stable-proposed-updates', 'production', 'production-proposed-updates'):
pb_suite='production-proposed-updates'
+ cmd = ['toilet', '-w', '200', 'dist: %s' %(pb_suite)]
+ subprocess.check_call(cmd)
+ cmd = ['toilet', '-w', '200', 'version: %s' %(version)]
+ subprocess.check_call(cmd)
+
gbp = git_buildpackage.GitBuildPackage(
upstream_branch=GIT_UPSTREAM_BRANCH,
debian_branch=GIT_DEBIAN_BRANCH,
else:
logger.debug('value of NO_UPLOAD: %s' % NO_UPLOAD)
except Exception, error:
+ cmd = ['toilet', 'upload to reprepro failed:']
+ subprocess.check_call(cmd)
logger.exception(error)
exit_error()