This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-crypto.git
The following commit(s) were added to refs/heads/master by this push:
new 0d13a40 Find did not work; try ls
0d13a40 is described below
commit 0d13a407de5da79cd9b9779937de72fc3ab24416
Author: Sebb <[email protected]>
AuthorDate: Thu Jun 30 12:48:26 2022 +0100
Find did not work; try ls
---
.github/workflows/adhoctest.yml | 13 ++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/adhoctest.yml b/.github/workflows/adhoctest.yml
index 6a3ac05..24c856e 100644
--- a/.github/workflows/adhoctest.yml
+++ b/.github/workflows/adhoctest.yml
@@ -67,6 +67,13 @@ jobs:
- name: Find Crypto Libraries
if: always()
run: |
- find 2>/dev/null /usr/lib -name libcrypto*.dylib -ls || true
- find 2>/dev/null /usr/local/lib -name libcrypto*.dylib -ls || true
- find 2>/dev/null /opt/local/lib -name libcrypto*.dylib -ls || true
\ No newline at end of file
+ ls -l /usr/lib/libcrypto*.dylib
+ - name: Find Crypto Libraries
+ if: always()
+ run: |
+ ls -l /usr/local/lib/libcrypto*.dylib
+ - name: Find Crypto Libraries
+ if: always()
+ run: |
+ ls -l /opt/local/lib/libcrypto*.dylib
+ find 2>/dev/null /opt/local/lib -name libcrypto*.dylib -ls
\ No newline at end of file