diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2016-05-24 14:45:18 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2016-05-24 14:45:18 +0200 |
| commit | a61cd1d0fd642c45bc61ef52f09d8f62ce3976b8 (patch) | |
| tree | fa343335eb682ebabfef3f27460c2c94da9e76bc | |
| parent | 493e9a5a8f613764cfa396c33ee6cb381b0dbbef (diff) | |
tests: Do not run 'cve' checker in 'tests/guix-lint.sh'.
Reported by Malcolm, Cook <MEC@stowers.org>.
* tests/guix-lint.sh: Pass '-c synopsis,description' in first invocation
so we don't run the 'cve' checker.
| -rw-r--r-- | tests/guix-lint.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/guix-lint.sh b/tests/guix-lint.sh index c105521ec73..7ddc7c265bc 100644 --- a/tests/guix-lint.sh +++ b/tests/guix-lint.sh @@ -54,7 +54,7 @@ grep_warning () # 2) the synopsis starts with a lower-case letter; # 3) the description has a single space following the end-of-sentence period. -out=`guix lint dummy 2>&1` +out=`guix lint -c synopsis,description dummy 2>&1` if [ `grep_warning "$out"` -ne 3 ] then false; else true; fi |
