From cf9013ef151df00c39641f0d67ee22713458120c Mon Sep 17 00:00:00 2001 From: Loukas Papachristoforou Date: Wed, 9 Oct 2024 17:45:25 +0100 Subject: [PATCH] slither workflow fix --- .github/workflows/run-slither.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-slither.yaml b/.github/workflows/run-slither.yaml index 2ca5a871d..bab788973 100644 --- a/.github/workflows/run-slither.yaml +++ b/.github/workflows/run-slither.yaml @@ -28,4 +28,4 @@ jobs: run: solc-select install 0.8.15;solc-select use 0.8.15 - name: Function clash analysis - run: yarn slither:fn-clashes &> tmp_res; cat tmp_res | grep 'Function id collision found' && exit 1 || exit 0 + run: yarn slither:fn-clashes &> tmp_res; cat tmp_res | { grep 'Function id collision found' || false; } && exit 1 || exit 0