From 2a9d426a6b27d5929e3a6245a61f2cc4ee30a139 Mon Sep 17 00:00:00 2001 From: 12WW1160 Date: Sat, 2 Jan 2021 19:49:38 +0100 Subject: [PATCH] add spellcheck --- Jenkinsfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c57b684..355cad8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -70,10 +70,11 @@ pipeline { } } - stage('update repo structure') { + stage('spell check') { steps { - sh '''rm -Rf REPOSTRUCTURE.md - echo "$(tree --dirsfirst --charset=ascii .)" > REPOSTRUCTURE.md''' + sh ''' + mdspell -r -n -a "**/*.md" + ''' } }