Merge pull request #179 from waku-org/weboko/jenkins-ci

Fix Jenkins CI by escaping brackets
This commit is contained in:
Sasha 2023-01-11 21:26:47 +01:00 committed by GitHub
commit d8a3d6647e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
ci/Jenkinsfile vendored
View File

@ -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}/"
}