Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik Gramner <gramner@twoorioles.com>2019-02-21 02:24:08 +0300
committerHenrik Gramner <henrik@gramner.com>2019-02-21 02:24:16 +0300
commit1ba8423af918c66c8bc9e757f6eb75524b9aeaba (patch)
treec3c0f2d8f25831fbc745b0b796ba5bf65b115f83 /.gitlab-ci.yml
parent11faab9ebea63ae1a1c352f9142d1c3af172299b (diff)
ci: Check for trailing whitespace
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e311806..41fcab5 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -10,7 +10,7 @@ style-check:
- debian
- amd64
script:
- - git grep -n -e $'\t' --or -e $'\r' -- . ':(exclude)*/compat/*' && exit 1
+ - git grep -n -P "\t|\r| $" -- . ':(exclude)*/compat/*' && exit 1
- git remote add upstream https://code.videolan.org/videolan/dav1d.git && git fetch -q upstream master
- for i in $(git rev-list HEAD ^upstream/master); do
echo "Checking commit message of $i";