Merge branch 'show-diff-on-lint-failures' into 'master'
show diff on lint failures See merge request !1986
This commit is contained in:
commit
3303c63180
|
@ -8,4 +8,13 @@ before_script:
|
|||
|
||||
lint:
|
||||
script:
|
||||
- fdroid lint -f
|
||||
- export EXITVALUE=0
|
||||
- fdroid lint -f || {
|
||||
export EXITVALUE=1;
|
||||
printf "\nThese files have lint issues:\n";
|
||||
fdroid rewritemeta -l;
|
||||
printf "\nThese are the formatting issues:\n";
|
||||
fdroid rewritemeta;
|
||||
git --no-pager diff --color=always;
|
||||
}
|
||||
- exit $EXITVALUE
|
||||
|
|
Loading…
Reference in a new issue