Merge pull request #180 from waku-org/weboko/fix-ci

Fix Jenkins CI: add escape on back slash
This commit is contained in:
Sasha 2023-01-11 21:48:36 +01:00 committed by GitHub
commit cfe6462e06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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