From 742a4245fed5b5545f210e8d8b9e4f80f31e6052 Mon Sep 17 00:00:00 2001 From: "fryorcraken.eth" Date: Fri, 7 Oct 2022 11:41:59 +1100 Subject: [PATCH] ci: do not fail if no style.css file --- ci/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index add8476..ca96acb 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -80,5 +80,5 @@ def buildExample(example=STAGE_NAME) { def copyExample(example=STAGE_NAME) { sh "mkdir -p build/docs/${example}" sh "cp ${example}/index.html build/docs/${example}/" - sh "[ -f ${example}/style.css ] && cp ${example}/style.css build/docs/${example}/" + sh "[ -f ${example}/style.css ] && cp ${example}/style.css build/docs/${example}/ || exit 0" }