Fix one conditional.

This commit is contained in:
Ralph Bean 2015-12-22 18:14:51 +00:00
parent b581e4a6f9
commit cc985b5531

View file

@ -131,7 +131,6 @@ if __name__ == '__main__':
(pkg, ACTIVE[branch])
)
{% if env != 'staging' %}
print ''
print 'repo %s%s' % (key, pkg)
print '\n'.join(buffer)
@ -140,8 +139,8 @@ if __name__ == '__main__':
print ' RWC refs/tags/ = %s' % ' '.join(writers)
if masters:
print ' RWC = %s' % ' '.join(masters)
{% endif %}
{% if env != 'staging' %}
# Bring backward compatibility while we keep the symlinks in place
# from the old to the new locations.
if key == 'rpms/':
@ -153,5 +152,6 @@ if __name__ == '__main__':
print ' RWC refs/tags/ = %s' % ' '.join(writers)
if masters:
print ' RWC = %s' % ' '.join(masters)
{% endif %}
sys.exit(0)