From 340900013075bf7005e7195767eed8acc971d5f6 Mon Sep 17 00:00:00 2001 From: Alex Kotov Date: Sun, 12 Jun 2022 11:48:37 +0300 Subject: [PATCH] Main: fix script "test-suite-log" --- test-suite-log | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test-suite-log b/test-suite-log index d0e1429a..de24605a 100755 --- a/test-suite-log +++ b/test-suite-log @@ -2,5 +2,5 @@ set -eux -test -f examples/test-suite.log && cat examples/test-suite.log -test -f tests/test-suite.log && cat tests/test-suite.log +test -f examples/test-suite.log && cat examples/test-suite.log || true +test -f tests/test-suite.log && cat tests/test-suite.log || true