enhanced test to keep a permanent list of UTF files in tests/UTF_Files

This commit is contained in:
Arne Teuke
2017-07-11 17:53:03 +01:00
parent 9b646162ae
commit c9a26ad054
2 changed files with 3 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
# .gitignore for cd_apache
.yardoc
Gemfile.lock
FileList

3
Jenkinsfile vendored
View File

@@ -184,7 +184,8 @@ Changelog of Git Changelog.
stage('check for UTF-8 files') {
steps {
sh '''echo "$(find . -type f -exec file {} \\;)" > FileList
grep -v ASCII FileList | grep -v git'''
mkdir tests
echo "$(grep -v ASCII FileList | grep -v git)" > tests/UTF_Files'''
}
}