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', '-f', 'ascii9', '-t', 'dist: %s' %(pb_suite)]
+ cmd = ['figlet-figlet', '-t', 'dist: %s' %(pb_suite)]
subprocess.check_call(cmd)
- cmd = ['toilet', '-f', 'ascii9', '-t', 'version: %s' %(version)]
+ print 'dist: %s' %(pb_suite)
+ cmd = ['figlet-figlet', '-t', 'version: %s' %(version)]
subprocess.check_call(cmd)
+ print 'version: %s' %(version)
gbp = git_buildpackage.GitBuildPackage(
upstream_branch=GIT_UPSTREAM_BRANCH,
else:
logger.debug('value of NO_UPLOAD: %s' % NO_UPLOAD)
except Exception, error:
- cmd = ['toilet', '-f', 'ascii9', '-t', 'upload to reprepro failed:']
+ cmd = ['figlet-figlet', '-t', 'upload to reprepro failed:']
subprocess.check_call(cmd)
logger.exception(error)
exit_error()