Skip to content

Instantly share code, notes, and snippets.

@kgleeson
Created July 12, 2012 11:24
Show Gist options
  • Save kgleeson/3097556 to your computer and use it in GitHub Desktop.
Save kgleeson/3097556 to your computer and use it in GitHub Desktop.
def print_info(**kwargs):
logging.info("=" * 80)
logging.info("Build configuration options:")
logging.info("=" * 80)
buildinfo=[
('Games', kwargs['games']),
('Languages', kwargs['languages']),
('Partner', kwargs['partner']),
('InstallTag', kwargs['installtag']),
('Marketing', kwargs['marketingmode']),
('OutputDir', kwargs['output']),
('RemoteRoot', kwargs['remoteroot']),
('LocalRoot', kwargs['localroot']),
('Offline', kwargs['offline'])]
for info in buildinfo:
logging.info("%-10s => %s" % info)
logging.info("=" * 80)
@kgleeson
Copy link
Author

Started build
Command run: popcat.py -i test_tag -la en -p TestPartner local game1

Build configuration options:

Games => game1
Languages => en
Partner => TestPartner
InstallTag => test_tag
Marketing => Normal
OutputDir => ~/popcatbuilds/
RemoteRoot => //depot/rmauto/trunk/mac/...
LocalRoot => local
Offline => False

Finished build

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment