Jenkinsfile: exclude editorconfig-checker itself
All checks were successful
bundlewrap/pipeline/head This commit looks good

because it complains about its own binary :sadface:
This commit is contained in:
Franzi 2021-02-17 13:31:11 +01:00
parent fb87c8a20a
commit 09971002b4
Signed by: kunsi
GPG key ID: 12E3D2136B818350

2
Jenkinsfile vendored
View file

@ -6,7 +6,7 @@ pipeline {
sh """
wget -Oec-linux-amd64.tar.gz https://github.com/editorconfig-checker/editorconfig-checker/releases/latest/download/ec-linux-amd64.tar.gz
tar -xzf ec-linux-amd64.tar.gz && rm ec-linux-amd64.tar.gz
bin/ec-linux-amd64 -no-color
bin/ec-linux-amd64 -no-color -exclude '^bin/'
"""
}
}