From 192ea4fe14117a046c398f90c7c761a07cea3846 Mon Sep 17 00:00:00 2001 From: Dmitry Ilyin Date: Fri, 2 Sep 2022 22:54:37 +0300 Subject: [PATCH] Fix CI build --- .github/workflows/matrix_build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/matrix_build.yml b/.github/workflows/matrix_build.yml index 69d6ee64..0e0b8596 100644 --- a/.github/workflows/matrix_build.yml +++ b/.github/workflows/matrix_build.yml @@ -335,7 +335,9 @@ jobs: - name: Install build dependencies run: | sudo make install-deps - ./deps/install.sh + if [ -d deps ]; then + ./deps/install.sh + fi if [ ! -z "$ACT" ]; then echo "FORCE_UNSAFE_CONFIGURE=1" >> $GITHUB_ENV else