From 4011baf6cf0361c98029401ab66850ac571f5b4b Mon Sep 17 00:00:00 2001 From: weboko Date: Wed, 11 Jan 2023 20:22:32 +0100 Subject: [PATCH] fix syntax of command --- ci/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index f280d9f..2b791bc 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}/" }