From 829d461a90d6e476ad50ae609f703d3798cc3d1f Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Tue, 9 Feb 2021 10:18:24 +0200 Subject: fix(check): don't pass -v for check on to test.py Previously, -v was obeyed by check itself, but also passed onto the test program it generates with Subplot. This removes -v from the list of arguments passed on to the test program. This makes -v actually be useful. --- check | 1 + 1 file changed, 1 insertion(+) diff --git a/check b/check index 65514cc..27bef0d 100755 --- a/check +++ b/check @@ -12,6 +12,7 @@ then verbose | -v | --verbose) quiet= hideok= + shift ;; esac fi -- cgit v1.2.1