mirror of
https://github.com/QuasarApp/QuasarAppCI.git
synced 2025-04-27 06:14:32 +00:00
try fix propertyes
This commit is contained in:
parent
2d2aef71a6
commit
f46770bf7a
@ -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",
|
||||
|
Loading…
x
Reference in New Issue
Block a user