fix(ci): missing module name for parentOrCurrentBuild

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2023-10-25 17:25:42 +02:00
parent 4a30d13bdc
commit 0592154a33
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ def getArch() {
def getE2EBuildType() {
if (utils.isPRBuild()) { return 'prs' }
def parent = parentOrCurrentBuild()
def parent = utils.parentOrCurrentBuild()
if (parent != null && parent.name == 'nightly') { return nightly }
return null
}