From 62d379bbe31e834154be288e762650b7fa7619a4 Mon Sep 17 00:00:00 2001 From: Markus Dobel Date: Mon, 27 Nov 2023 18:51:08 +0100 Subject: [PATCH] feat: show directory contents of build mount path if not empty --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 4917506..c57ddb7 100644 --- a/action.yml +++ b/action.yml @@ -113,7 +113,7 @@ runs: # ensure mount path exists mkdir -p "${BUILD_MOUNT_PATH}" - find "${BUILD_MOUNT_PATH}" -maxdepth 0 ! -empty -exec echo 'WARNING: directory [{}] is not empty, data loss might occur.' \; + find "${BUILD_MOUNT_PATH}" -maxdepth 0 ! -empty -exec echo 'WARNING: directory [{}] is not empty, data loss might occur. Content:' \; -exec ls -al "{}" \; echo "Removing unwanted software... " if [[ ${{ inputs.remove-dotnet }} == 'true' ]]; then