X-Git-Url: https://git.ralfj.de/mass-build.git/blobdiff_plain/84ccff1d0a5bae4e31b939b0c1495a9719e6565a..02d6ae3b48b56e1b830239099fa485669fae52e5:/mass_build.py diff --git a/mass_build.py b/mass_build.py index 6bbba4c..385749f 100755 --- a/mass_build.py +++ b/mass_build.py @@ -13,7 +13,7 @@ class Project: if vcsName == 'git': self.vcs = vcs.Git(self.sourceFolder(), config['url'], config['version']) elif vcsName == 'svn': - self.vcs = vcs.SVN(self.sourceFolder(), config['url'], config.get('versionName')) + self.vcs = vcs.SVN(self.sourceFolder(), config['url']) else: raise Exception("Unknown VCS type "+vcsName) # build system @@ -107,7 +107,7 @@ if args.projects: elif name in allFolders: workProjects += allFolders[name] else: - raise Exception("Project or folder%s does not exist" % name) + raise Exception("Project or folder %s does not exist" % name) elif args.resume_from is None: workProjects = projects.values() # all the projects else: