finalised this stage

This commit is contained in:
Arne Teuke
2017-07-11 18:06:45 +01:00
parent 8345322978
commit 19a1a86f2a
2 changed files with 6 additions and 3 deletions

7
Jenkinsfile vendored
View File

@@ -183,8 +183,11 @@ Changelog of Git Changelog.
stage('check for UTF-8 files') {
steps {
sh '''rm -Rf tests/UTF_Files
echo "$(find . -type f -exec file {} \\;)" > FileList
sh '''if [ ! -d test ]; then
mkdir test
fi
rm -Rf tests/UTF_Files
echo "$(find . -type f -exec file {} \\\\;)" > FileList
echo "$(grep -v ASCII FileList | grep -v git)" > tests/UTF_Files'''
}
}