From fd7e23b32b09dd0beca10222ed5e068c42e5fde9 Mon Sep 17 00:00:00 2001 From: XargonWan Date: Tue, 7 Jan 2025 09:54:50 +0900 Subject: [PATCH] LIBMAN: changing echoes --- automation_tools/libman.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automation_tools/libman.sh b/automation_tools/libman.sh index f95dbc32..bbc0d8a9 100644 --- a/automation_tools/libman.sh +++ b/automation_tools/libman.sh @@ -71,7 +71,7 @@ echo "LibMan is flying away" # Output the lists of copied and failed files if [ ${#copied_files[@]} -ne 0 ]; then - echo "Copied files:" + echo "Imported libraries:" for file in "${copied_files[@]}"; do echo "$file" done @@ -79,7 +79,7 @@ fi # Output failed files only if the list is not empty if [ ${#failed_files[@]} -ne 0 ]; then - echo "Failed files:" + echo "Failed library files:" for file in "${failed_files[@]}"; do echo "$file" done