From 997df186eea2a7ae362dc5e96f539a37442ad48d Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Wed, 2 Sep 2020 16:24:29 +0100 Subject: [PATCH] [CI] fix regression with variable name (#20930) --- .ci/packaging.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/packaging.groovy b/.ci/packaging.groovy index 57a99a74f63..2be78aac68f 100644 --- a/.ci/packaging.groovy +++ b/.ci/packaging.groovy @@ -252,7 +252,7 @@ def publishPackages(baseDir){ * baseDir=name1/name2/name3-> return name2 */ def getBeatsName(baseDir) { - return basedir.replace('x-pack/', '') + return baseDir.replace('x-pack/', '') } def withBeatsEnv(Closure body) {