From dcdcd12ed333b3aebbb5d4769cdcaab2ab39621c Mon Sep 17 00:00:00 2001 From: weboko Date: Wed, 11 Jan 2023 21:22:01 +0100 Subject: [PATCH] escape braket to avoid collision with groovy syntax --- ci/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index 2b791bc..5fb60aa 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -79,5 +79,5 @@ def buildExample(example=STAGE_NAME) { def copyExample(example=STAGE_NAME) { sh "mkdir -p build/docs/${example}" - sh "cp examples/${example}/*.{js|css|html} build/docs/${example}/" + sh "cp examples/${example}/*.\(js|css|html\) build/docs/${example}/" }