Fix auto names for apps using RM/branch

This commit is contained in:
Daniel Martí 2013-11-13 17:31:35 +01:00
parent 560dd15464
commit be0b215ead

View file

@ -345,7 +345,8 @@ def main():
elif mode == 'RepoManifest': elif mode == 'RepoManifest':
(version, vercode) = check_repomanifest(app) (version, vercode) = check_repomanifest(app)
elif mode.startswith('RepoManifest/'): elif mode.startswith('RepoManifest/'):
(version, vercode) = check_repomanifest(app, mode[13:]) tag = mode[13:]
(version, vercode) = check_repomanifest(app, tag)
elif mode == 'RepoTrunk': elif mode == 'RepoTrunk':
(version, vercode) = check_repotrunk(app) (version, vercode) = check_repotrunk(app)
elif mode == 'HTTP': elif mode == 'HTTP':