From 26787501b5b994654234ac0e5039f8ca78b87149 Mon Sep 17 00:00:00 2001 From: Marco Carrozzo Date: Thu, 19 Jan 2023 14:41:48 +0100 Subject: [PATCH] fix debug output --- .github/actions/download-cache-and-artifacts/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/download-cache-and-artifacts/action.yml b/.github/actions/download-cache-and-artifacts/action.yml index 3c3b170fee..0644529b56 100644 --- a/.github/actions/download-cache-and-artifacts/action.yml +++ b/.github/actions/download-cache-and-artifacts/action.yml @@ -28,8 +28,8 @@ runs: pwd ls -lha echo "====DIST====" - find dist -maxdepth 1 -type d + find dist -maxdepth 1 -type d || true echo "====NXCACHE====" - find nxcache -maxdepth 1 -type d + find nxcache -maxdepth 1 -type d || true echo "====ADF====" - find node_modules/@alfresco/ -maxdepth 1 -type d \ No newline at end of file + find node_modules/@alfresco/ -maxdepth 1 -type d || true \ No newline at end of file