From 504bcd44318190a0e18ca278ae7b92be464b264d Mon Sep 17 00:00:00 2001 From: Sasha <118575614+weboko@users.noreply.github.com> Date: Thu, 23 Nov 2023 16:02:55 +0300 Subject: [PATCH] bug: fix copy of rln-js (#289) --- ci/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index 7309e8a..459e37d 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -93,6 +93,6 @@ def buildNextJSExample(example=STAGE_NAME) { sh 'npm install --silent' sh 'npm run build' sh "mkdir -p ${dest}" - sh "cp -r out/. ${dest}" + sh "cp -r out/* ${dest}" } }