From 0140c2a6013158e5c9e278e5a0380440a168ddfe Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 13 Jul 2022 18:53:06 +0200 Subject: [PATCH] allow copy to fail --- .github/workflows/cura-installer.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cura-installer.yml b/.github/workflows/cura-installer.yml index c0fa15564c..b1bf5df563 100644 --- a/.github/workflows/cura-installer.yml +++ b/.github/workflows/cura-installer.yml @@ -174,8 +174,8 @@ jobs: - name: Install OpenSSL shared (Bash) if: ${{ runner.os != 'Windows' }} run: | - cp ./openssl/lib/*.so* ./cura_inst/bin/ - cp ./openssl/lib/*.dylib* ./cura_inst/bin/ + cp ./openssl/lib/*.so* ./cura_inst/bin/ || true + cp ./openssl/lib/*.dylib* ./cura_inst/bin/ || true - name: Install OpenSSL shared (Powershell) if: ${{ runner.os == 'Windows' }}