From 304a9df52da8ef0641f1b1fc8d713264725f9929 Mon Sep 17 00:00:00 2001 From: Many the fish Date: Wed, 12 Jun 2024 07:22:24 +0200 Subject: [PATCH] Remove `-v` parameter --- .github/workflows/test-suite.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml index 5dbde4301..84a82250e 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -116,7 +116,7 @@ jobs: override: true - name: Run cargo tree without default features and check lindera is not present run: | - if cargo tree -f '{p} {f}' -e normal --no-default-features | grep -vqz lindera; then + if cargo tree -f '{p} {f}' -e normal --no-default-features | grep -qz lindera; then echo "lindera has been found in the sources and it shouldn't" exit 1 fi