Report the vercode as well as the version name when building

This commit is contained in:
Daniel Martí 2014-06-30 16:34:26 +02:00
parent 4d63ed0568
commit fdb53b75f4

View file

@ -892,7 +892,8 @@ def trybuild(app, thisbuild, build_dir, output_dir, also_check_dir, srclib_dir,
if thisbuild['disable']: if thisbuild['disable']:
return False return False
logging.info("Building version " + thisbuild['version'] + ' of ' + app['id']) logging.info("Building version %s (%s) of %s" % (
thisbuild['version'], thisbuild['vercode'], app['id']))
if server: if server:
# When using server mode, still keep a local cache of the repo, by # When using server mode, still keep a local cache of the repo, by