build script: support target detection with spaces in name

This commit is contained in:
alexey.lysiuk 2020-06-13 13:25:20 +03:00
parent 93a020330c
commit 3928f26e80

View file

@ -363,6 +363,7 @@ class Builder(object):
break
assert project_name
project_name = project_name.replace(' ', '-')
self.target = self.targets[project_name]
def _create_targets(self):