allow copy to fail

This commit is contained in:
Jelle Spijker 2022-07-13 18:53:06 +02:00 committed by GitHub
parent 6b31e6a776
commit 0140c2a601
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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' }}