Skip to content

Commit

Permalink
fix more syntax error in groovy script
Browse files Browse the repository at this point in the history
Change-Id: I4b3d97ab1a91cefbe4aba91b866d221ca6851920
  • Loading branch information
BenediktSeidl committed Dec 13, 2023
1 parent 5656c00 commit 1ceafbc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions buildscripts/scripts/compile-all-werks.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ def main() {
java -jar node_modules/vnu-jar/build/dist/vnu.jar --filterpattern 'The .tt. element is obsolete\\. Use CSS instead\\.' --stdout --format gnu - <${WORKSPACE}/index.html >${WORKSPACE}/errors.txt
""")
}
} catch {
} catch(Exception) {
archiveArtifacts(
artifacts: [
${WORKSPACE}"/index.html"
${WORKSPACE}"/errors.txt"
"${WORKSPACE}/index.html",
"${WORKSPACE}/errors.txt"
],
fingerprint: true,
);
Expand Down

0 comments on commit 1ceafbc

Please sign in to comment.