try fix propertyes

This commit is contained in:
Andrei Yankovich 2020-02-05 17:52:02 +03:00
parent 2d2aef71a6
commit f46770bf7a

View File

@ -12,15 +12,15 @@ class QIFRepogen (BaseModule):
factory = super().getFactory()
def generateRepogenCmd(props):
repoLocation = props.getProperty('repoLocation') + "/"
projectName = props.getProperty('projectName')
repoLocation = str(props.getProperty('repoLocation')) + "/"
projectName = str(props.getProperty('projectName'))
if (len(projectName) <= 0):
raise Exception('Project undefined')
repoLocation += projectName + "/"
repoLocation += props.getProperty('platform')
tempPackage = props.getProperty('tempPackage')
repoLocation += str(props.getProperty('platform'))
tempPackage = str(props.getProperty('tempPackage'))
cmd = [self.repogen,
"--update-new-components",