4
0
mirror of https://github.com/QuasarApp/QuasarAppCI.git synced 2025-05-07 18:59:36 +00:00
This commit is contained in:
Andrei Yankovich 2020-02-05 15:58:05 +03:00
parent a99fd57143
commit 2d2aef71a6
2 changed files with 2 additions and 4 deletions

@ -29,9 +29,7 @@ class BuildBotShedulers(BuildBotModule):
'WindowsBuilder',
]
buildersRepo = ['LinuxBuilder',
'WindowsBuilder',
]
buildersRepo = ['RepoGen']
self.masterConf['schedulers'] = self.shedulers + [
schedulers.AnyBranchScheduler(

@ -27,7 +27,7 @@ class Make(BaseModule):
return step.getProperty('test')
def getNameProjectFromGitUrl(self, url):
return url[url.rfind('/'): len(url) - 4]
return url[url.rfind('/') + 1: len(url) - 4]
def destDirPrivate(self, props):
repo = str(props.getProperty('repository'))