From 8e7eb586257c9da1014c55099c9ffbd6a5600d1b Mon Sep 17 00:00:00 2001 From: Michael Hoisie Date: Mon, 29 Nov 2021 13:36:45 -0500 Subject: [PATCH] Use find instead of ls --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 18ed44325c..a579c8bf1c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -54,7 +54,7 @@ jobs: - name: List ICU run: | - ls -al $HOME/icu-bin + find $HOME/icu-bin - name: Build run: ICU_ROOT_DIR=$HOME/icu-bin SKIP_ICU_BUILD=true SKIP_ERRORPRONE=true SKIP_JAVADOC=true ./gradlew clean assemble testClasses --parallel --stacktrace --no-watch-fs @@ -95,7 +95,7 @@ jobs: - name: List ICU run: | - ls -al $HOME/icu-bin + find $HOME/icu-bin - name: Run unit tests run: |