From 0e2a15b38e206fdb96d2d8b225999d6e5c9e6e73 Mon Sep 17 00:00:00 2001
From: Ruben Vorderman <r.h.p.vorderman@lumc.nl>
Date: Wed, 9 Feb 2022 16:34:35 +0100
Subject: [PATCH] remove v parameter

---
 .github/workflows/lint.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 8c24bd3..d2ea7df 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -82,7 +82,8 @@ jobs:
         run: |
           bash -c '
             for WDL_FILE in $(git ls-files *.wdl); do
-              wdl-aid --strict $WDL_FILE > /dev/null 2> wdl-aid_stderr || if grep -vz  "ValueError: Missing parameter_meta for inputs:" wdl-aid_stderr
+              wdl-aid --strict $WDL_FILE > /dev/null 2> wdl-aid_stderr || 
+              if grep -z  "ValueError: Missing parameter_meta for inputs:" wdl-aid_stderr
               then
                  exit 1
               fi
-- 
GitLab